/* =========================================
   Global fonts & base
   ========================================= */

@font-face {
  font-family: "Avengeance";
  src: url("../../fonts/Futuristic/Avengeance.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;      /* variable range */
  font-style: normal;
  font-display: swap;
}

body.landing-theme {
  background-color: #050608;
  color: #f5f5f5;
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =========================================
   Top navigation (Lazy-style)
   ========================================= */

body.landing-theme .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 6, 8, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

body.landing-theme .header-row {
  padding-block: 0.85rem;
  padding-inline: 15rem;
}

body.landing-theme .brand__logo {
  height: 22px;
  width: auto;
}
@media (max-width: 960px) {
    body.landing-theme .header-row {
        padding-inline: 0rem; 
    }
}
/* nav links */

body.landing-theme .main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(230, 233, 243, 0.75);
  text-decoration: none;
  padding-inline: 0.9rem;
  position: relative;
  transition: color 140ms ease;
}

body.landing-theme .main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.55rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity: 0;
  transform: translateX(-50%);
  transition:
    width 160ms ease,
    opacity 160ms ease;
}

body.landing-theme .main-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

body.landing-theme .main-nav a.is-active {
  color: #ffffff;
}

body.landing-theme .main-nav a.is-active::after {
  width: 26px;
  opacity: 0.9;
}

/* Try Now button in header */

body.landing-theme .header-btn {
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  text-decoration: none;
  background: linear-gradient(135deg, #f5f5f5, #dcdcdc);
  color: #050608;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

body.landing-theme .header-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.4);
}

body.landing-theme .header-btn:active {
  transform: translateY(0);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.32);
}

/* mobile menu background */

body.landing-theme .mobile-nav {
  background: rgba(5, 6, 8, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

body.landing-theme .mobile-nav a {
  color: rgba(231, 234, 244, 0.9);
}

/* =========================================
   Hero layout + spotlight
   ========================================= */

body.landing-theme .landing-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
  padding: 7.5rem 0 13rem;
  background: #050608;
  overflow: hidden;
}

/* big radial “circle” behind hero */
/* big radial “circle” behind hero */
body.landing-theme .landing-hero__spotlight {
  position: absolute;
  left: 50%;
  top: -20vh;
  transform: translateX(-50%);
  width: 140vmin;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 43%,
    #151822 0%,
    #050608 60%,
    #020306 100%
  );
  box-shadow:
    0 0 140px rgba(0, 0, 0, 0.9),
    0 0 280px rgba(0, 0, 0, 0.95);
  pointer-events: none;
  overflow: visible;
}

/* the main circle you actually see (on top of the glow) */
body.landing-theme .landing-hero__spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 43%,
    #151822 0%,
    #050608 60%,
    #020306 100%
  );
  box-shadow:
    0 0 140px rgba(0, 0, 0, 0.9),
    0 0 280px rgba(0, 0, 0, 0.95);
  z-index: 1; /* sits above the glow */
}

/* soft lightning-like pulse BEHIND the circle */
body.landing-theme .landing-hero__spotlight::after {
  content: "";
  position: absolute;
  inset: -18%; /* slightly larger than the circle */
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0;
  filter: blur(26px);
  mix-blend-mode: screen;
  z-index: 0; /* ← this is behind ::before now */
  animation: heroHaloFlash 5s ease-in-out infinite;
}


@media (max-width: 960px) {
  body.landing-theme .landing-hero__spotlight {
    width: 120vmin !important;
    margin-top: 20rem;
  }
}


@keyframes heroHaloFlash {
  0%,
  60% {
    opacity: 0;
    filter: blur(22px);
  }

  /* quick “energy” flash */
  72% {
    opacity: 0.8;
    filter: blur(14px);
  }

  82% {
    opacity: 0.45;
    filter: blur(18px);
  }

  100% {
    opacity: 0;
    filter: blur(22px);
  }
}


body.landing-theme .landing-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

/* =========================================
   Hero copy (eyebrow, title, subheadline)
   ========================================= */

body.landing-theme .landing-hero__copy {
  max-width: 640px;
}

/* eyebrow: "MEET BLITZLY AI | SINGLE BEST BUSINESS LAUNCHPAD" */
body.landing-theme .landing-hero__eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(210, 214, 224, 0.8);
}

body.landing-theme .landing-hero__eyebrow-label {
  color: #fff;
}


body.landing-theme .landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
  padding: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(210, 214, 224, 0.8);
  white-space: nowrap;
}

body.landing-theme .landing-hero__eyebrow-label {
  font-weight: 600;
  color: #f7f7fb;
  transition: color 160ms ease, text-shadow 160ms ease;
}

body.landing-theme .landing-hero__eyebrow-note {
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(176, 182, 196, 0.85);
  transition: color 160ms ease, text-shadow 160ms ease;
}

body.landing-theme .landing-hero__eyebrow-sep {
  opacity: 0.55;
  transition: opacity 160ms ease;
}

/* Hover: invert emphasis – label darker, note bright white */
body.landing-theme .landing-hero__eyebrow:hover .landing-hero__eyebrow-label {
  color: #777b86; /* dark grey */
  text-shadow: none;
}

body.landing-theme .landing-hero__eyebrow:hover .landing-hero__eyebrow-note {
  color: #ffffff; /* bright */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

body.landing-theme .landing-hero__eyebrow:hover .landing-hero__eyebrow-sep {
  opacity: 0.8;
}

/* left / right bolt containers */
body.landing-theme .landing-hero__eyebrow-line {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 72px;
}

body.landing-theme .landing-hero__eyebrow-line img {
  display: block;
  width: 56px;            /* tweak to taste */
  height: auto;
  opacity: 0.65;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.7));
  transition:
    opacity 160ms ease,
    filter 160ms ease,
    transform 160ms ease;
}

/* mirror the right bolt */
body.landing-theme .landing-hero__eyebrow-line--right img {
  transform: scaleX(-1);
}

/* hover: bolts brighten + glow slightly */
body.landing-theme .landing-hero__eyebrow:hover .landing-hero__eyebrow-line img {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}



body.landing-theme .landing-hero__eyebrow-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}


/* full title line */
body.landing-theme .landing-hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  line-height: 1.12;
  font-weight: 500;
  color: #f6f7fb;
}

/* "Business" */
body.landing-theme .landing-hero__title-main {
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
}

/* "JARVIS" */
body.landing-theme .landing-hero__jarvisWrap {
  display: inline-flex;
  align-items: baseline;
}

/* actual SVG image */
body.landing-theme .landing-hero__jarvis {
  display: block;
  height: clamp(2.4rem, 4vw, 3rem); /* adjust size here */
  width: auto;
  margin-top: 0.05em; /* tiny vertical nudge; tweak if needed */

  /* subtle glow so it feels premium */
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.85))
          drop-shadow(0 0 18px rgba(160, 170, 196, 0.45));
  opacity: 0.96;
}

/* subheadline */
body.landing-theme .landing-hero__sub {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(184, 190, 204, 0.9);
}

/* =========================================
   Launcher image card (chatbox.png)
   ========================================= */

/* container that holds the card under the heading */
body.landing-theme .landing-hero__panel {
  display: flex;
  justify-content: center;
  margin-top: 3.25rem;
}

/* shell that tilts with the mouse */
body.landing-theme .landing-hero__launcherShell {
  position: relative;
  max-width: 900px;             /* adjust as needed */
  width: 100%;
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  border-radius: 28px;
  overflow: visible;            /* keep outer glow of PNG */
}

/* soft glow around the launcher */
body.landing-theme .landing-hero__launcherShell::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

/* the PNG itself */
body.landing-theme .landing-hero__launcherImg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

/* =========================================
   Responsive tweaks
   ========================================= */

@media (max-width: 960px) {
  body.landing-theme .landing-hero {
    padding-top: 5.8rem;
  }
}

@media (max-width: 768px) {
  body.landing-theme .landing-hero__panel {
    margin-top: 2.5rem;
  }

  body.landing-theme .landing-hero__launcherShell {
    max-width: 110vw;
    box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.9),
      0 0 0 1px rgba(255, 255, 255, 0.05);
  }
}



/* ================================
   Launcher overlay on chatbox card
   ================================ */

body.landing-theme .landing-hero__launcherShell {
  position: relative;
  width: min(820px, 110vw);
  aspect-ratio: 1563 / 532; /* matches the PNG */
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

body.landing-theme .landing-hero__launcherImg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 28px;
}

/* overlay that holds text + button */
body.landing-theme .landing-hero__launcherOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none; /* only the button will re-enable it */
}

/* approximate inner text rectangle */
body.landing-theme .landing-hero__typewrap {
  align-self: flex-start;
  /* tweak these 3 to move it around */
  margin-left: 11%;   /* → more = move text further right */
  margin-right: 16%;
  margin-top: -10%;    /* more negative = move text further UP */

  max-width: 72%;
  min-height: 2rem;
  display: flex;
  align-items: center;
}

/* typewriter text */
body.landing-theme .landing-hero__typeText {
  position: relative;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(229, 231, 237, 0.96);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0.14em;
}

/* glowing vertical caret */
body.landing-theme .landing-hero__typeText::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14%;
  width: 2px;
  height: 1.05em;
  border-radius: 999px;
  background: #f9fafb;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 255, 255, 0.65);
  animation: heroCaretBlink 1s step-end infinite;
}

@keyframes heroCaretBlink {
  0%, 45% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* Blitz button bottom-right on the card */
body.landing-theme .landing-hero__blitzBtn {
  pointer-events: auto;
  position: absolute;
  right: 10%;          /* → smaller = closer to right edge */
  bottom: 30%;        /* ↑ increase this to move button UP */

  padding: 0.36rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(160, 170, 196, 0.65);
  background: rgba(10, 11, 17, 0.65);
  color: rgba(237, 240, 255, 0.96);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  overflow: hidden;

  /* gradient hotspot */
  --mx: 50%;
  --my: 50%;

  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 120ms ease;
}
/* subtle white glow following the mouse */
body.landing-theme .landing-hero__blitzBtn::before {
  content: "";
  position: absolute;
  inset: 2px; /* slightly larger halo */
  border-radius: inherit;
  pointer-events: none;

  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgb(255, 255, 255) 0%,
    rgba(200, 214, 255, 0.55) 25%,
    rgba(140, 160, 220, 0.18) 55%,
    rgba(0, 0, 0, 0) 80%
  );

  opacity: 0;
  /* stronger composite, less washed-out than 'screen' */
  mix-blend-mode: soft-light;
  transition: opacity 180ms ease-out;
}


@media (max-width: 960px) {
  body.landing-theme .landing-hero__blitzBtn {
    font-size: 0.64rem;
  }
  body.landing-theme .landing-hero{
    padding: 2.5rem 0 19rem;
  }
  body.landing-theme .landing-hero__eyebrow{
    font-size: 0.48rem;
  }
  body.landing-theme .landing-hero__inner{
    gap: 2rem;
  }
}


/* keep stroke, just brighten + glow a bit */
body.landing-theme .landing-hero__blitzBtn:hover {
  background: rgba(10, 12, 20, 0.92);
  color: #ffffff;
  border-color: rgba(214, 220, 242, 0.9);  /* keep border visible */

  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.8),
    0 0 12px rgba(255, 255, 255, 0.18);
}

body.landing-theme .landing-hero__blitzBtn:hover::before {
  opacity: 0.65;
}

/* small press effect */
body.landing-theme .landing-hero__blitzBtn:active {
  transform: translateY(1px);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.8),
    0 0 8px rgba(255, 255, 255, 0.14);
}





/* bottom paragraph */


body.landing-theme .landing-hero__demo {
  margin-top: 1.8rem;
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
  color: rgba(196, 201, 214, 0.86);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

body.landing-theme .landing-hero__demo strong {
  font-weight: 600;
  color: #f7f7fb;
}

body.landing-theme .landing-hero__demo-sep {
  margin: 0 0.35rem;
  opacity: 0.9;
}

/* tiny hover polish – optional */
body.landing-theme .landing-hero__demo:hover {
  color: rgba(214, 219, 232, 0.95);
}

body.landing-theme .landing-hero__demo:hover strong {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}
/* Header CTA – slimmer, more “chip” like */
body.landing-theme .header-cta {
  gap: 0.75rem;
}

body.landing-theme .header-btn {
  border-radius: 999px;
  padding: 0.4rem 1.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  background: radial-gradient(circle at 30% 0%, #ffffff, #e4e5eb);
  color: #050608;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease,
    border-color 140ms ease;
}

body.landing-theme .header-btn:hover {
  transform: translateY(-1px);
  background: radial-gradient(circle at 30% 0%, #ffffff, #f7f7fa);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

body.landing-theme .header-btn:active {
  transform: translateY(0);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}
.product-title-agents {
  display: flex;
  justify-content: center;  /* or left, depending on your layout */
}

.product-title-agents-img {
  display: block;
  max-width: 100%;
  height: auto;
}