:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted: #52525b;
  --border: #e4e4e7;
  --border2: #d4d4d8;
  --chip: #fafafa;
  --brand: #0a0a0a;
  --brandHover: #1f1f1f;
  --radius: 18px;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  --max: 1100px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
/* top announcement */
.topbar {
  width: 100%;
  background: #053bee;
  color: #fff;
  padding: 8px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 35px;
  font-size: 14px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 65s linear infinite;
}

.marquee-content a {
  color: #fff;
  text-decoration: none;
  margin-right: 50px;
  font-weight: bold;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* move half of the duplicated content */
}

.fade-marquee {
  position: relative;
}

.fade-announcement {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 1s;
  white-space: nowrap;
}

.fade-announcement a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.logo {
  width: 120px;
}

.link {
  margin-bottom: 10px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navlinks > a {
  font-size: 14px;
  opacity: 0.88;
  text-decoration: none;
  color: inherit;
}

.navlinks a:hover {
  opacity: 1;
}

.dropdownWrapper {
  position: relative;
}

/* Invisible hover bridge */
.dropdownWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 14px;
}

.drop {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Menu container */
.dropdownMenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  color: #000;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.16s ease;
  z-index: 99;
}

/* Show on hover */
.dropdownWrapper:hover .dropdownMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Dropdown items with icons */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  font-size: 13px;
  opacity: 0.85;
  user-select: text;
  transition: all 0.15s ease;
}

.dropdown-item i {
  font-size: 18px;
  color: #4a8dff;
  width: 20px;
}

.dropdown-item:hover {
  opacity: 1;
  background: rgba(74, 141, 255, 0.06);
}

.dropdown-item span {
  flex: 1;
}

/* Mega Menu */
.megaWrapper {
  position: relative;
}

/* Invisible hover bridge */
.megaWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 20px;
}

/* Mega menu container */
.megaMenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  background: #fff;
  color: #000;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.18s ease;
  z-index: 99;
}

/* Show on hover */
.megaWrapper:hover .megaMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-icon i {
  font-size: 24px;
}

.megaItem {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  transition: 0.15s ease;
  cursor: pointer;
}

.megaItem:hover {
  background: var(--soft);
}

.megaItem i {
  font-size: 20px;
  color: #4a8dff;
  flex-shrink: 0;
  margin-top: 2px;
}

.megaItem h5 {
  font-size: 16.5px;
  margin: 0 0 2px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.megaItem p {
  font-size: 12.5px;
  margin: 0;
  opacity: 0.75;
  line-height: 1.45;
}

.megaCol h4 {
  font-size: 15px;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
  border-bottom: 2px solid #4a8dff;
  padding-bottom: 5px;
}

/* Grid */
.megaGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}


/* Column text selectable */
.megaCol p,
.megaCol h4 {
  user-select: text;
}

.megaCol h4  {
  font-size: 1.2rem;
}


/* Hover text */
.megaCol p {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 8px;
  line-height: 1.5;
  cursor: pointer;
}

.megaCol p:hover {
  opacity: 1;
}

/* Mobile Styles */
.mobileToggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
}

.hamburger-icon,
.close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.close-icon {
  opacity: 0;
}

.mobileToggle.active .hamburger-icon {
  opacity: 0;
}

.mobileToggle.active .close-icon {
  opacity: 1;
}

.mobileMenu {
  display: none;
  border-top: 1px solid var(--border);
  max-height: 80vh;
  overflow-y: auto;
}

.mobileMenu.show {
  display: block;
}

.mobileMenu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

/* Mobile Dropdown Styles */
.mobile-dropdownWrapper {
  border-bottom: 1px solid var(--border);
}

.mobile-dropdownHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
}

.mobile-dropdownHeader a {
  border-bottom: none;
  padding: 0;
  flex: 1;
}

.mobile-dropdownHeader i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.mobile-dropdownHeader.active i {
  transform: rotate(180deg);
}

.mobile-dropdownMenu {
  display: none;
  padding-left: 16px;
  background: rgba(0, 0, 0, 0.02);
}

.mobile-dropdownMenu.show {
  display: block;
}

.mobile-dropdownMenu a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.mobile-dropdownMenu a:last-child {
  border-bottom: none;
}

/* Mobile items with icons */
.mobile-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 !important;
}

.mobile-item i {
  font-size: 18px;
  color: #4a8dff;
  width: 24px;
}

.mobile-item span {
  flex: 1;
}

.mobile-megaCol {
  margin-bottom: 20px;
}

.mobile-megaCol h4 {
  font-size: 14px;
  margin: 16px 0 12px;
  color: #4a8dff;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(74, 141, 255, 0.2);
}

.mobile-megaCol a {
  padding: 8px 0;
  font-size: 13px;
  border-bottom: none;
}

/* Responsive */
@media (max-width: 980px) {
  .megaMenu {
    width: 100%;
    left: 0;
    transform: none;
  }

  .megaGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .navlinks {
    display: none;
  }

  .mobileToggle {
    display: block;
  }

  .megaGrid {
    grid-template-columns: 1fr;
  }
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--fg);
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  border-color: var(--border2);
}
.btn.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn.primary:hover {
  background: var(--brandHover);
  border-color: var(--brandHover);
}
.btn.ghost {
  background: #fff;
}
.btn-cta {
  background-color: #3b82f6;
  color: #fff !important;
}
.btn-cta:hover {
  background-color: #2563EB;
}
.mobile-toggle {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 650;
  font-size: 14px;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
}
.mobile-menu a:hover {
  color: var(--text);
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
/* HERO */
.hero {
  padding: 68px 0 40px;
  border-bottom: 1px solid var(--border);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--chip);
  font-size: 12px;
  font-weight: 600;
  color: #3f3f46;
}
.h1 {
  margin-top: 18px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 750;
}
.sub {
  margin-top: 16px;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.hero-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.proof-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card .title {
  font-size: 14px;
  font-weight: 750;
}
.card .desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.kicker {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #71717a;
}
.h2 {
  margin-top: 10px;
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: 750;
}
.section {
  padding: 58px 0;
}
.section.border {
  border-top: 1px solid var(--border);
}
.grid3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 900px) {
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .grid2 {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3f3f46;
  font-size: 14px;
  line-height: 1.6;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 7px;
  flex: 0 0 auto;
}
.p {
  margin-top: 14px;
  max-width: 860px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 650;
  color: #3f3f46;
}
.badge strong {
  color: var(--text);
  font-weight: 750;
}
/* CTA block */
.cta-block {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  background: #fff;
}
.cta-block .h3 {
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cta-block .p {
  margin-top: 10px;
}
/* TABLE */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.table th,
.table td {
  padding: 14px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.table th {
  background: #fafafa;
  text-align: left;
  color: #3f3f46;
  font-weight: 750;
}
.table tr:last-child td {
  border-bottom: none;
}
/* ===============================
   FOOTER
=================================*/

.footer {
  background: #ffffff;
  border-top: 1px solid #e6e9f0;
  padding: 60px 0 0;
  font-family: inherit;
}

.footerTop {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  gap: 40px;
  align-items: start;
}

.footerCol h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: #6b7280;
}

.footerCol a {
  display: block;
  font-size: 14px;
  color: #111827;
  padding: 6px 0;
  text-decoration: none;
  transition: 0.2s ease;
}

.footerCol a:hover {
  opacity: 0.6;
}

/* Subscribe Card */
.footerSubscribe {
  background: #f5f7fb;
  padding: 28px;
  border-radius: 16px;
}

.footerSubscribe h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footerSubscribe p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

.subscribeForm {
  display: flex;
  gap: 10px;
}

.subscribeForm input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.subscribeForm button {
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  background: #111827;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.subscribeForm button:hover {
  opacity: 0.85;
}

/* Divider */
.footerDivider {
  margin: 50px 0 30px;
  border-top: 1px solid #e6e9f0;
}

/* Badges */
.footerBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.footerBadges img {
  height: 60px;
  object-fit: contain;
  opacity: 0.9;
}

/* Bottom Bar */
.footerBottom {
  background: #053BEE;
  padding: 18px 80px;
  border-top: 1px solid #e6e9f0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #fff;
}

.bottomLinks {
  display: flex;
  gap: 20px;
}

.bottomLinks a {
  text-decoration: none;
  color: inherit;
}

.bottomLinks a:hover {
  opacity: 0.6;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 1100px) {
  .footerTop {
    grid-template-columns: repeat(2, 1fr);
  }

  .footerSubscribe {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

  .footerTop {
    grid-template-columns: 1fr 1fr;
  }

  .footerSubscribe {
    grid-column: span 2;
  }

  .subscribeForm {
    flex-direction: column;
  }

  .footerBottom {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bottomLinks {
    justify-content: center;
  }

  .footerBadges img {
    height: 45px;
  }
}

/* Small helpers */
.hr {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.note {
  font-size: 12px;
  color: #71717a;
  line-height: 1.6;
}

/* Mega dropdown (desktop) */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.caret {
  font-size: 12px;
  color: #71717a;
}
.mega {
  position: absolute;
  top: 44px;
  left: -240px;
  width: min(820px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: none;
}
.nav-item:hover .mega {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 980px) {
  .mega-grid {
    grid-template-columns: 1.05fr 1fr 1fr 0.95fr;
  }

}
.mega-col {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}
.mega-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #71717a;
  font-weight: 800;
}
.mega-link {
  display: block;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
}
.mega-link:hover {
  border-color: var(--border);
  background: #fafafa;
}
.mega-link .t {
  font-size: 13px;
  font-weight: 800;
  color: #0a0a0a;
}
.mega-link .d {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #52525b;
}
.mega-cta {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mega-hero {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fafafa;
}
.mega-hero .big {
  font-size: 14px;
  font-weight: 850;
}
.mega-hero .small {
  margin-top: 8px;
  font-size: 12px;
  color: #52525b;
  line-height: 1.6;
}
/* Hero split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
@media (min-width: 980px) {
  .hero-split {
    grid-template-columns: 1.08fr 0.92fr;
  }
  .mega {
    left: -210px;
  }
}
/* Media frames */
.frame {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.arch {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}
.video-frame {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-box {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fafafa;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.play {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #0a0a0a;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.caption {
  font-size: 12px;
  color: #71717a;
  line-height: 1.6;
}
/* KPI strip */
.kpi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px) {
  .kpi {
    grid-template-columns: repeat(3, 1fr);
  }
}
.kpi .card {
  padding: 16px;
}
.kpi .num {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.01em;
}
.kpi .lab {
  margin-top: 6px;
  font-size: 12px;
  color: #52525b;
  line-height: 1.5;
}
/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}
.faq p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
