:root {
  /* Colors */
  --bg: #0b0c10;
  /* near-black */
  --surface: #101217;
  /* elevated card */
  --text-primary: #e6e8ec;
  --text-secondary: #a3a8b3;
  --divider: #1a1d24;
  --accent: #6b7cff;
  /* bluish purple */
  --accent-2: #8b5cf6;
  /* violet */
  --success: #17a34a;
  --color-bg-translucent: hsla(0, 0%, 100%, 0.05);
  --page-padding-inline: 24px;
  --page-padding-block: 64px;
  --page-padding-left: max(
    env(safe-area-inset-left),
    var(--page-padding-inline)
  );
  --page-padding-right: max(
    env(safe-area-inset-right),
    var(--page-padding-inline)
  );
  --color-bg-primary: #08090a;
  --page-max-width: 1024px;

  /* Spacing scale */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-16: 16px;

  /* Typography */
  --font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --size-xs: 12px;
  --size-sm: 14px;
  --size-base: 16px;
  --size-lg: 18px;
  --size-xl: 20px;
  --size-2xl: 24px;
  --size-3xl: 28px;
  --size-4xl: 36px;
  --size-5xl: 48px;
  --size-6xl: clamp(36px, 6vw, 72px);

  /* MUI breakpoints */
  --mui-xs: 0px;
  --mui-sm: 600px;
  --mui-md: 900px;
  --mui-lg: 1200px;
  --mui-xl: 1536px;

  /* Layout */
  --header-height: 56px;
}

/* Base reset (minimal, avoids opinionated resets) */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-primary);
  background: #000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-height);
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

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

/* Thin Scrollbar Styling */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.title-lg {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 600;
}

.title-lg span {
  display: block;
}

.muted {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0px;
}

/* Two column feature split */
.split-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
/* By default, hide the icon on desktop */
.mobile-only-icon {
  display: none;
}

.section.projects-feature {
  padding: 30px 0px 0px;
  background: #000;
}

.projects-feature .split-2::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: var(--divider);
  display: none;
  transform: translateX(-0.5px);
}

.product-direction .split-2 {
  padding: 50px 0px;
  border-top: 1px solid #1a1d24;
  border-bottom: 1px solid #1a1d24;
}

.projects-feature .split-3 {
  margin-top: 50px;
  padding: 0px;
  border: none;
}

.projects-feature .split-3:before {
  display: none;
}

.panel-image {
  /* margin-top: 20px; */
  border-radius: 16px;
  overflow: hidden;
  background: #0f1218;
  border: 1px solid var(--divider);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.panel-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Slightly floating stacked card effect */
.panel-stack {
  position: relative;
  margin-top: 20px;
  height: 360px;
}

.panel-stack .base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--divider);
  background: #0f1218;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.panel-stack:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent -100%,
    var(--color-bg-primary) 120%
  );
  top: 0px;
}

/* Ideate and specify */
.ideate .ideate-top {
  align-items: center;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6f7787;
  font-weight: 500;
  cursor: pointer;
}

.bullet .bar {
  width: 3px;
  height: 16px;
  background: #2b2f39;
  border-radius: 3px;
  display: inline-block;
}

.bullet.active {
  color: #e6e8ec;
}

.bullet.active .bar {
  background: #27d86a;
}

.ideate .panel-image.doc {
  background: #0f1218;
  border: 1px solid var(--divider);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: none;
}

.ideate .panel-image.doc.active {
  display: block;
}

.ideate-divider {
  height: 1px;
  background: var(--divider);
  margin: 36px 0 24px;
}

.feature-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fi {
  display: grid;
  gap: 6px;
  align-content: start;
}

.fi .material-symbols-rounded {
  font-size: 20px;
}

.innerFi {
  display: flex;
}

.fi span {
  color: #cbd3e1;
  margin-right: 5px;
}

.fi h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.fi p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.ideate .panel-image.doc.animate-up {
  animation: ideateSlideUp 480ms ease-out;
}

.panel-image {
  border-radius: 8px;
  overflow: hidden;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.5s ease-in-out;
}

.panel-image.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.panel-image img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.headline-power-wrapper {
  text-align: center;
}

.headline-power {
  color: #8a8f98;
  font-size: 22px;
  line-height: 1.3;
}

span.highlight-power {
  color: #fff;
}

/* Layout primitives */
.container {
  width: 100%;
  max-width: 1040px;
  /* site-wide content width */
  margin-inline: auto;
  padding-inline: 20px;
}

.grid-3 {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--divider);
  background: #0b0c10;
  /* solid black theme header (no gradient) */
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  /* logo | nav (center) | cta */
  align-items: center;
  height: 56px;
  gap: var(--space-6);
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-4); /* 16px */
  justify-self: end;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-mark {
  color: var(--accent);
}

.logo-text {
  letter-spacing: 0.2px;
  font-weight: 700;
}

.primary-nav {
  margin: 0;
}

.nav-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 32px;
}

.nav-list a {
  color: #cbd3e1;
  font-weight: 500;
  font-size: var(--size-sm);
  padding: 6px 2px;
  display: inline-block;
}

.nav-list a:hover {
  color: var(--text-primary);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  display: block;
  border-radius: 2px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform-origin: center;
}

.container.nav {
  position: relative;
}
.nav-list > li {
  height: 57px;
  line-height: 47px;
}
.submenu-wrap ul li {
  line-height: 1rem;
  /* padding: 6px 12px; */
  margin: 0px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.submenu-wrap ul li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.submenu-wrap ul li a {
  padding: 10px 10px;
  border-radius: 10px;
}
.submenuMainWrapper {
  position: absolute;
  top: 100%;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  max-width: 60%;
  border: 1px solid #1a1b1c;
  border-radius: 10px;
  padding: 10px 10px;
  display: none;
  background: #0f1011;
}

.submenu-wrap ul {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  gap: 1rem;
  background: #1a1b1c;
  padding: 0px;
  border-radius: 10px;
}
.coreFeatures,
.moreFeatures {
  font-size: 10px;
  line-height: 1;
  margin: 16px 0px 12px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0px 22px;
}
.menuSubtext {
  font-size: 11px;
  margin: 4px 0px 0px;
  color: rgba(255, 255, 255, 0.6);
}
.coreProdMenu {
  border-right: 0.5px solid #cccccc40;
  padding-bottom: 20px;
}
.moreProdMenu {
  padding-bottom: 20px;
}
.productParentMenu:hover .submenuMainWrapper {
  display: block;
}
/* --- Hamburger to X Animation --- */
/* When the nav is open, animate the spans to form an 'X' */

body.nav-open .nav-toggle span:nth-child(1) {
  /* Top bar rotates and moves down to form the top of the 'X' */
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  /* Middle bar fades out */
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  /* Bottom bar rotates and moves up to form the bottom of the 'X' */
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
body.nav-open .site-header {
  border-bottom-color: transparent;
}

body.nav-open .mobile-drawer {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  background: color-mix(in oklab, var(--bg) 96%, #000 4%);
  border-bottom: 1px solid var(--divider);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 220ms ease;
  z-index: 10;
}

.mobile-drawer ul {
  list-style: none;
  margin: 0;
  padding: 12px 20px;
  display: grid;
  gap: 6px;
}

.mobile-drawer a {
  display: block;
  padding: 12px;
  border-radius: 10px;
  color: var(--text-secondary);
}
.mobile-drawer .submenumobile {
  font-size: 12px;
  padding-left: 10px;
}

.mobile-drawer a:hover {
  background: #0e1016;
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: var(--size-sm);
  line-height: 1;
}

.btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 8px 20px rgba(107, 124, 255, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-secondary {
  color: var(--text-primary);
  background: #141821;
  border: 1px solid var(--divider);
}

.btn-secondary:hover {
  background: #171b25;
}

.btn-text {
  color: #cbd3e1;
}

.btn-text:hover {
  color: var(--text-primary);
}

/* Light button to match screenshot Sign up */
.cta .btn-light {
  color: #0b0c10;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 6px 12px;
  /* small pill */
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 1px 2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-light:hover {
  background: #f7f8fa;
}

/* Muted CTA for Start building */
.btn-muted {
  color: #e6e8ec;
  background: #232834;
  border: 1px solid #2a2f3c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.btn-muted:hover {
  background: #262c3a;
}

.link-arrow {
  color: #c8cfe0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.link-arrow:hover {
  color: #ffffff;
}

/* Hero */
.hero {
  padding: 90px 0px 0px;
  position: relative;
  z-index: 9;
}

.hero-inner {
  text-align: left;
}

.headline {
  font-weight: 600;
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 var(--space-6);
  /* background: linear-gradient(180deg, #fff, #cdd3e0 75%); */
  -webkit-background-clip: text;
  /* background-clip: text; */
  color: #fff;
}

.lead {
  color: var(--text-secondary);
  font-size: var(--size-lg);
  max-width: 800px;
  margin: 0 0 var(--space-8);
  font-weight: 500;
}

.actions {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.Hero_section-wrapper {
  position: relative;
  padding-top: 72px;
  /* Contain the transformed element and prevent overlap with sections below */
  overflow: hidden;
}

.LayoutContentiner {
  padding-left: var(--page-padding-left);
  padding-right: var(--page-padding-right);
  max-width: var(--page-max-width);
  width: 100%;
  margin-inline: auto;
}

.heroImageMainContainer {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
}

.heroImageMainContainer:before {
  content: "";
  display: block;
  margin-top: -140px;
}

.heroImageMainContainer:after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    var(--color-bg-primary) 100%
  );
}

.Bleed_Wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.HeroIllustration_Wrap {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  /* Use viewport height for responsiveness, with max/min values */
  height: 90vh;
  max-height: 900px;
  min-height: 450px;
  --Sidebar-width: 260px;
}

.HeroIllustration_perspective_Wrap {
  position: relative;
  contain: strict;
  width: 100%;
  height: 100%;
  perspective: 4000px;
  perspective-origin: 100% 0; /* Vanishing point at top-right */
  transform-style: preserve-3d;
}

.HeroIllustration_base_3d {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid #1e1e1e;
  background: var(--color-bg-primary);
  width: 1600px;
  height: 900px;
  margin: 280px auto auto;
  transform: translateX(2%) scale(1.2) rotateX(47deg) rotateY(31deg)
    rotate(324deg);
  transform-origin: top left;
  backface-visibility: hidden;
}
.HeroIllustration_3d {
  transform-style: preserve-3d;
}
.HeroIllustration_sidebar {
  width: var(--Sidebar-width);
  padding: 16px 14px;
  height: 100%;
}
.HeroIllustration_sidebar img {
  object-fit: cover;
  height: 100%;
}

.HeroIllustration_inbox {
  position: absolute;
  left: var(--Sidebar-width);
  inset-block: 8px;
  height: 100%;
}

/* Owl dots match Linear aesthetic */
.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #394155;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--accent);
  transform: scale(1.2);
}

/* Features */
/* Announcement removed per requirement */

/* Generic sections */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
  /* background: linear-gradient(
    to bottom,
    var(--color-bg-translucent),
    transparent 20%
  ); */
  background: linear-gradient(
    to bottom,
    hsl(0deg 0% 100% / 10%),
    transparent 20%
  );
}

.product-direction {
  /* background: linear-gradient(
    to bottom,
    var(--color-bg-translucent),
    transparent 20%
  ); */
  background: linear-gradient(
    to bottom,
    hsl(0deg 0% 100% / 10%),
    transparent 20%
  );
}

.section-alt {
  background: #0b0e14;
}

.section-head {
  text-align: left;
  margin-bottom: 40px;
}

.title-xl {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.06;
  margin: 0 0 10px;
  font-weight: 600;
}

.subhead {
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0;
}

.cards {
  display: grid;
  gap: 20px;
}

.card {
  background: #0f1218;
  border: 1px solid var(--divider);
  border-radius: var(--radius-16);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02), 0 20px 60px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin: 12px 0 8px;
  font-size: var(--size-xl);
}

.card p {
  margin: 0;
  color: var(--text-secondary);
}

.card .card-media {
  height: 220px;
  border-radius: 12px;
  border: 1px solid var(--divider);
  background: linear-gradient(180deg, #121723, #0f131c);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card .screenshot.is-tilt {
  transform: perspective(1200px) rotateX(7deg) rotateY(-9deg);
  transform-origin: 50% 100%;
}

/* Made for modern product teams */
.made .intro {
  align-items: start;
  margin-bottom: 50px;
}

/* 
.title-xxl {
  font-size: var(--size-6xl);
  line-height: 1.04;
  margin: 0;
  font-weight: 600;
} */

.card-visuals .card {
  padding: 0;
  overflow: hidden;
}

.card-visuals .visual {
  aspect-ratio: 16/10;
  background: #0d1016;
  border-bottom: 1px solid var(--divider);
}

.card-visuals .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-visuals .card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--divider);
  color: #cbd3e1;
}

.icon-circle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Product direction */
.product-direction .kicker {
  color: #9aa3b2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--size-sm);
  margin-bottom: 6px;
}

.product-direction .kicker .dot {
  width: 8px;
  height: 8px;
  background: #6170e8;
  border-radius: 50%;
  display: inline-block;
}

.product-direction .lede {
  color: var(--text-secondary);
  max-width: 720px;
}
.product-direction .lede strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 600;
}

.pd-image {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.pd-image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent -100%,
    var(--color-bg-primary) 350%
  );
  top: 0px;
}

.pd-image img {
  display: block;
  width: 100%;
  height: auto;
}

.customers-section {
  position: relative;
  padding: 64px 0;
  background-color: #000;
  overflow: hidden;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.headline-wrapper {
  text-align: center;
  margin-bottom: 32px;
}

/* .headline {font-size:21px; font-weight:510; line-height:1.33; color:#8a8f98; letter-spacing:-0.012em;} */
.headline .highlight {
  color: #f7f8f8;
}

.spacer {
  height: 32px;
}

.customers-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 48px 24px;
  align-items: center;
  justify-items: center;
  transition: filter 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 77px;
  position: relative;
  overflow: hidden;
}

.logo {
  width: 150px;
  height: auto;
  /* max-height: 47px; */
  /* filter: brightness(0) invert(1); */
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.hover-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px 0 16px;
  height: 32px;
  background-color: #232326;
  border: 1px solid #3e3e44;
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.hover-label span {
  font-size: 14px;
  font-weight: 510;
  letter-spacing: -0.013em;
  white-space: nowrap;
}

.hover-label svg {
  width: 16px;
  height: 16px;
  fill: #9c9da1;
}

.customers-link:hover .logos-grid {
  filter: blur(10px);
}

.customers-link:hover .hover-label {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.customers-link:hover .logo {
  opacity: 0.7;
}

.customers-link:focus {
  outline: 2px solid #5e6ad2;
  outline-offset: 4px;
  border-radius: 8px;
}

.customers-link:focus .hover-label {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-item {
  animation: fadeIn 0.6s ease-out backwards;
}

.logo-item:nth-child(1) {
  animation-delay: 0.1s;
}

.logo-item:nth-child(2) {
  animation-delay: 0.2s;
}

.logo-item:nth-child(3) {
  animation-delay: 0.3s;
}

.logo-item:nth-child(4) {
  animation-delay: 0.4s;
}

.logo-item:nth-child(5) {
  animation-delay: 0.5s;
}

.logo-item:nth-child(6) {
  animation-delay: 0.6s;
}

.marquee-container {
  width: 100%;
  overflow: hidden; /* Hides content that overflows */
  position: relative;
}

.marquee-content {
  display: flex; /* Use flexbox to lay out the items */
  white-space: nowrap; /* Prevents text wrapping */
}

.marquee-item {
  flex-shrink: 0; /* Prevents items from shrinking */
  /* background-color: #1a1a1a; */
  margin-right: 1.5rem;
}

/* Customer Logos Carousel for Mobile */
.Layout_container__BVtmP {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.page_root__EA6JT {
  --bento-border: var(--color-border-translucent);
  height: 100%;
}

.Layout_container__BVtmP:not(.Layout_variant-full__YpEBE)
  [data-header]
  ~ .Layout_content__PrPCk {
  padding-top: var(--header-height);
}

.Layout_content__PrPCk {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  min-height: calc(100 * var(--dvh));
}

.product-teams-section {
  position: relative;
  padding: 160px 0;
  background-color: #0a0a0a;
  isolation: isolate;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.title-area {
  grid-column: span 6;
}

.section-title {
  font-size: 56px;
  font-weight: 538;
  line-height: 1.1;
  letter-spacing: -1.82px;
  color: #f7f8f8;
  text-wrap: balance;
}

.description-area {
  grid-column: span 6;
  align-self: end;
}

.section-description {
  font-size: 15px;
  font-weight: 510;
  line-height: 1.6;
  letter-spacing: -0.165px;
  color: #8a8f98;
  text-wrap: balance;
}

.switch-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f7f8f8;
  text-decoration: none;
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.switch-link:hover {
  opacity: 0.8;
}

.switch-link:hover .chevron-icon {
  transform: translateX(2px);
}

.chevron-icon {
  width: 16px;
  height: 16px;
  color: #f7f8f8;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-container {
  position: relative;
  height: 368px;
  width: 100%;
}

.carousel-scroll {
  padding: 4px 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-scroll::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: grid;
  grid-template-columns: 344px repeat(3, 336px) 344px;
  grid-template-rows: 360px;
  gap: 8px;
  width: max-content;
  padding: 0 calc((100vw - 1024px) / 2);
}

.carousel-item {
  width: 336px;
}

.carousel-item:first-child,
.carousel-item:last-child {
  width: 344px;
}

.feature-card {
  display: flex;
  position: relative;
  width: 100%;
  height: 360px;
  padding: 0;
  background-color: #141516;
  border: none;
  border-radius: 30px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
  isolation: isolate;
}

.feature-card:hover {
  background-color: #1a1b1c;
}

.card-image {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 320px;
  mask-image: linear-gradient(rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-image: linear-gradient(rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 90%);
}

.card-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 0 24px 32px;
  height: 88px;
  z-index: 1;
}

.card-title-wrapper {
  flex: 1;
}

.card-title {
  font-size: 21px;
  font-weight: 510;
  line-height: 1.33;
  letter-spacing: -0.252px;
  color: #f7f8f8;
  text-align: left;
  text-wrap: balance;
}

.expand-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #62666d;
  cursor: pointer;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  transition: all 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expand-button:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.expand-button svg {
  width: 18px;
  height: 18px;
  color: inherit;
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}

.split .badge {
  display: inline-block;
  background: #1a2030;
  color: #9aa3b2;
  border: 1px solid var(--divider);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: var(--size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 6px;
  color: var(--text-secondary);
}

.checklist li::before {
  content: "check_circle";
  font-family: "Material Symbols Rounded";
  color: var(--success);
  margin-right: 8px;
  vertical-align: -3px;
}

/* Workflows and integrations */
.workflows .kicker {
  color: #9aa3b2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--size-sm);
  margin-bottom: 6px;
}

.workflows .kicker .dot {
  width: 8px;
  height: 8px;
  background: #6170e8;
  border-radius: 50%;
  display: inline-block;
}

.workflows-carousel {
  margin-top: 32px;
  position: relative;
}

.workflow-card {
  background: #0f1218;
  border: 1px solid var(--divider);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  height: 420px;
}

/* Owl Carousel Navigation */
.owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  position: absolute;
  left: 0px;
  right: 0px;
}

.owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1d24 !important;
  border: 1px solid var(--divider) !important;
  color: #cbd3e1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.owl-nav button:hover {
  background: #232834 !important;
  color: #e6e8ec !important;
}

.owl-nav button span {
  font-size: 20px;
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--divider);
}

.card-header span {
  color: #cbd3e1;
}

.card-body {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.testimoial-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: brightness(0.9);
  transition: 0.3s;
}
.testimoial-bg-1 {
  background: url(../images/customers/Deepak-Ajwani.webp) center / cover
    no-repeat;
}
.testimoial-bg-2 {
  background: url(../images/customers/Akhilesh-Shrivastava.webp) center / cover
    no-repeat;
}
.testimoial-bg-3 {
  background: url(../images/customers/Abhishek-Kumar.webp) center / cover
    no-repeat;
}
.testimoial-bg-4 {
  background: url(../images/customers/Abhijeet-Anand.webp) center / cover
    no-repeat;
}
.testimoial-bg-5 {
  background: url(../images/customers/siddhant.webp) center / cover no-repeat;
}
.testimoial-bg-6 {
  background: url(../images/customers/rudra.webp) center / cover no-repeat;
}
.testimoial-bg-7 {
  background: url(../images/customers/Ashutosh-Kumar.webp) center / cover
    no-repeat;
}
.testimoial-bg-8 {
  background: url(../images/customers/Ashutosh-Kumar.webp) center / cover
    no-repeat;
}
.item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-top: auto;
}

.item span {
  color: #6f7787;
  font-size: 18px;
}
.customer-name h3 {
  position: relative;
}
.customer-name h3 {
  margin: 0px;
}
.customer-name h3 span {
  display: block;
  font-size: 12px;
}
.text .primary {
  color: #e6e8ec;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 3em; /* roughly 2 lines */
  transition: 1s;
}
.card-content:hover .text .primary {
  -webkit-line-clamp: unset; /* let text expand */
  max-height: 500px;
  transition: 1s;
}
.card-content:hover .testimoial-card-bg {
  filter: brightness(0.6);
  transition: 0.7s;
}
.text .secondary {
  color: #9aa3b2;
  font-size: 12px;
  margin-top: 2px;
}

.card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer h3 {
  margin: 0;
  font-size: 16px;
  color: #e6e8ec;
}

.card-footer p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #9aa3b2;
}

.card-footer span {
  color: #6f7787;
}

/* Mobile card */
.card-body.mobile {
  padding: 8px;
}

.mobile-screen {
  background: #1a1d24;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-header {
  text-align: center;
  padding: 8px;
  color: #e6e8ec;
  font-size: 12px;
  font-weight: 600;
}

.mobile-content {
  flex: 1;
  padding: 16px;
}

.mobile-title {
  color: #e6e8ec;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.mobile-item {
  margin-bottom: 12px;
}

.mobile-badge {
  display: inline-block;
  background: #27d86a;
  color: #0b0c10;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
}

.mobile-text {
  color: #e6e8ec;
  font-size: 13px;
  margin-bottom: 2px;
}

.mobile-subtext {
  color: #9aa3b2;
  font-size: 11px;
}

/* Asks card */
.card-body.asks {
  display: flex;
  align-items: center;
  justify-content: center;
}

.asks-letter {
  font-size: 120px;
  font-weight: 900;
  color: #2a2f3c;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Integrations */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.integration-card {
  height: 120px;
  border-radius: 14px;
  border: 1px solid var(--divider);
  background: #0f1218;
  display: grid;
  place-items: center;
  color: #cbd3e1;
  font-weight: 600;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--divider);
  /* padding: 80px 0 60px; */
  padding: 80px 0 20px;
  background: #000;
}

.footer-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.footer-logo .logo-mark {
  font-size: 24px;
  color: var(--text-primary);
}

.footer-logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  flex: 1;
}
.footeraboutWrapper {
  width: 34%;
}

.footer-column h4 {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-column h4 a {
  color: #fff;
}
.footer-column a:hover {
  color: var(--text-primary);
}

.footeraboutText p {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footeraddress p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footeraddress {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footeraddress p span {
  color: #fff;
}

.footeraddress a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footeraddress a span {
  color: #fff;
}

.footer-social {
  border-top: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-social li {
  display: flex;
}

.footer-social li a {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin-right: 10px;
  overflow: hidden;
}
.footer-social li a:last-child {
  margin-right: 0px;
}
.footer-social li svg {
  width: 30px;
  height: 30px;
  background: #ffffff;
  padding: 4px;
}
.footer-social ul {
  padding: 0px;
}
/* End footer */

/* Main container for the CTA section */
.aboveFooterCta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 24px;
  max-width: 1024px;
  margin: 0 auto;
  gap: 30px;
}
/* The main heading text */
.aboveFooterCta-heading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0px;
  text-align: left;
}
/* Container for the buttons */
.aboveFooterCta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Shared button styles */
.aboveFooterCta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

/* 'Contact sales' button styles */
.aboveFooterCta-button-contact {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid #374151;
}
.aboveFooterCta-button-contact:hover {
  background-color: #374151;
}

/* 'Get started' button styles */
.aboveFooterCta-button-get-started {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  cursor: pointer;
}
.aboveFooterCta-button-get-started:hover {
  background-color: #f3f4f6;
}

.aboveFooterCta-buttons {
  flex-direction: row;
  gap: 1rem;
}
/* End Main container for the CTA section */
/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-container {
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: 16px;
  max-width: 90vw;
  max-height: 90vh;
  width: 1000px;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--divider);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.modal-content {
  padding: 60px 40px 40px;
  overflow-y: auto;
  max-height: 90vh;
}

.modal-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.modal-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.modal-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.modal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.modal-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.modal-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.modal-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.modal-section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--divider);
  border-radius: 12px;
  text-align: center;
}

.feature-item span {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive Modal */

/* Utilities */
.hide-sm {
  display: none;
}

/* Responsive utilities */
.show-on-mobile {
  display: none;
}

.hide-on-mobile {
  display: block;
}
/*--------------video-iframe ----------*/
.linkedin-responsive-container {
  /* Set a fixed height for the container on all screens */
  height: 550px;
  /* The padding-bottom trick is often used for aspect ratio, but here we can set a fixed height on the container */
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.linkedin-responsive-container iframe {
  /* This makes the iframe fill the container */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tw-feed-native-video-compact-overlay {
  display: none;
}
/*--------------video-iframe ----------*/
/*--------------hide-openModalform in hamburger ----------*/
.mobile-drawer a.btn.btn-light.openModalform {
  display: none;
}
.product-direction .lede strong {
  display: block;
}
/*--------------hide-openModalform in hamburger----------*/

@media (min-width: 1400px) {
  .workflows-carousel {
    padding-left: calc((100vw - 1040px) / 2 + 20px);
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .linkedin-responsive-container {
    height: 550px;
  }
}
@media (min-width: 900px) {
  .split-2 {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .projects-feature .split-2::before {
    display: block;
  }

  .projects-feature .split-3:before {
    display: none;
  }
  .feature-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .primary-nav {
    justify-self: center;
  }

  .nav-list {
    display: flex;
    justify-content: center;
  }

  .nav-toggle {
    display: none;
  }
  .split {
    grid-template-columns: 1.1fr 1fr;
  }
  .integrations-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 600px) {
  .hide-sm {
    display: inline;
  }
}
/* Responsive adjustments for the hero illustration */
@media (max-width: 1200px) {
  .HeroIllustration_base_3d {
    transform: translateX(0) scale(1) rotateX(47deg) rotateY(28deg)
      rotate(330deg);
    margin-top: 200px;
  }
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .title-area {
    grid-column: span 8;
    margin-bottom: 24px;
  }

  .description-area {
    grid-column: span 8;
  }

  .section-title {
    font-size: 48px;
    letter-spacing: -1.5px;
  }
  .aboveFooterCta-heading {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .menuSubtext {
    display: none;
  }
  .HeroIllustration_perspective_Wrap {
    /* Center the perspective on smaller screens for a better view */
    perspective-origin: 50% 0;
  }
  .HeroIllustration_base_3d {
    transform: scale(0.85) rotateX(50deg) rotateY(20deg) rotate(340deg);
    margin-top: 120px;
  }
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .modal-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .modal-hero-content h1 {
    font-size: 36px;
  }

  .modal-content {
    padding: 40px 24px 24px;
  }
  .footeraboutWrapper {
    width: 100%;
  }
  .HeroIllustration_Wrap {
    height: 72vh;
  }
  .HeroIllustration_inbox img {
    height: 100%;
  }
  .linkedin-responsive-container {
    height: auto;
  }
}

@media (max-width: 899.98px) {
  .nav-toggle {
    display: inline-flex;
  }
  .show-on-mobile {
    display: block;
  }
  .hide-on-mobile {
    display: none;
  }
  .aboveFooterCta-heading {
    font-size: 2rem;
  }
  .aboveFooterCta-heading span {
    display: block;
  }
  .aboveFooterCta-buttons {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0px 50px;
  }
  .customers-section {
    padding: 0px 0px 48px;
  }

  .headline {
    font-size: 40px;
    line-height: 1.2;
  }

  .title-lg span {
    display: inline-block;
  }
  .Hero_section-wrapper {
    padding-top: 24px;
  }
  .HeroIllustration_Wrap {
    height: 65vh; /* Adjust height for tablets */
    min-height: 500px;
  }
  .HeroIllustration_base_3d {
    transform: scale(0.7) rotateX(50deg) rotateY(15deg) rotate(345deg);
    margin-top: 80px;
  }
  .headline-power {
    font-size: 16px;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 32px 16px;
  }

  .logo {
    width: 120px;
  }

  .logo-item {
    height: 60px;
  }

  .hover-label {
    display: none;
  }
  .cta .btn {
    padding: 8px 8px;
    font-size: 10px;
  }
  .product-teams-section {
    padding: 80px 0;
  }

  .content-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .title-area,
  .description-area {
    grid-column: span 4;
  }

  .section-title {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .carousel-track {
    grid-template-columns: repeat(3, 280px);
    padding: 0 24px;
  }

  .carousel-item,
  .carousel-item:first-child,
  .carousel-item:last-child {
    width: 280px;
  }

  .feature-card {
    height: 320px;
  }

  .footer-social {
    flex-direction: column;
  }
  .card-image {
    height: 280px;
  }
  .footer-social {
    flex-direction: column;
  }

  .footer-social .copyRightWrapper {
    order: 2;
    text-align: center;
    font-size: 14px;
  }
  .aboveFooterCta-heading {
    font-size: 2rem;
  }
  .aboveFooterCta-heading span {
    display: block;
  }
  .aboveFooterCta-buttons {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .modal-container {
    max-width: 95vw;
    max-height: 95vh;
  }

  .modal-hero-content h1 {
    font-size: 28px;
  }

  .modal-subtitle {
    font-size: 16px;
  }

  .modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
  .aboveFooterCta-heading span {
    display: inline-block;
  }
  .aboveFooterCta {
    flex-direction: column;
    justify-content: start;
  }
  .aboveFooterCta-buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* Form Loader and Success Message */
.form-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 12, 16, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 16px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-success-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 10;
  border-radius: 16px;
}

.form-success-message .material-symbols-rounded {
  font-size: 64px;
  color: var(--success);
  margin-bottom: 16px;
}

.form-success-message h4 {
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.form-success-message p {
  color: var(--text-secondary);
  margin: 0;
  max-width: 80%;
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 0px 50px;
  }
  .headline {
    font-size: 34px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .lead {
    font-size: 1.04rem;
    text-align: center;
    font-weight: 200;
    margin-bottom: 20px;
  }
  .animated-buttons {
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .animated-buttons button:first-child {
    margin: 0 auto 20px;
    width: max-content;
    background: #fff;
    color: #000;
    border-radius: 10px;
  }

  .animated-buttons button:last-child {
    /* Cleaned up and combined styles */
    background: linear-gradient(to left, black, white);
    border: 0px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1; /* z-index should be higher than the pseudo-element's */
    border-radius: 10px;
    width: max-content;
    margin: 0 auto;
    overflow: hidden;
    color: unset; /* Re-added to prevent issues */
  }

  .animated-buttons button:last-child:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.09);
    z-index: -1; /* This is the key fix: set z-index to place it behind the text */
    transform: translateY(100%);
    transition: 0.5s;
  }

  .animated-buttons button:last-child:hover:after {
    transform: translateY(0);
  }

  .mobile-only-icon {
    display: inline-block;
  }
  .logos-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }

  .logo {
    width: 100px;
  }

  .logo-item {
    height: 50px;
  }
  .section-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .section-description {
    font-size: 14px;
  }

  .card-title {
    font-size: 18px;
  }
  .aboveFooterCta-heading {
    font-size: 1.7rem;
  }

  .product-direction .split-2 {
    padding: 50px 0px 0px;
    border-bottom: 0px;
  }
  .projects-feature .split-3 {
    /* margin-top: 0px; */
    padding: 0px;
    border-bottom: 0px;
    border-top: 0px;
  }
  .product-direction .lede strong {
    display: block;
  }
}
