:root {
  --color-primary: #6046e9;
  --color-primary-dark: #4933bb;
  --bg-cta-gradient: linear-gradient(90deg, #6046e9 0%, #8a4ee5 100%);
  --color-slate-800: #1e293b;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-500: #6b7280;
  --color-gray-400: #9ca3af;
  --color-gray-300: #d1d5db;
  --color-neutral-200: #e5e5e5;
  --color-neutral-300: #d4d4d4;
  --color-background: #F7F3EE;
  --color-container: #eae0d4;
  --color-text-bubble: #f7f0e8;
  --color-icon-dark: #2d1f12;
  --color-icon-medium: #605347;
  --color-icon-light: #bab3a9;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body {
  font-family: var(--font-sans);
  color: var(--color-slate-800);
  line-height: 1.5;
  background-color: var(--color-background);
  margin: 0;
  padding: 0;
}

.font-manrope {
  font-family: 'Manrope', var(--font-sans);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: bold;
}

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

/* Grid background */
.landing_grid-background__D_Oza {
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

/* Utility classes */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mt-40 {
  margin-top: 10rem;
}

.ml-4 {
  margin-left: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-28 {
  padding-top: 7rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-9 {
  height: 2.25rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-full {
  width: 100%;
}

.w-fit {
  width: fit-content;
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-\[800px\] {
  min-height: 800px;
}

.max-w-\[560px\] {
  max-width: 560px;
}

.max-w-\[620px\] {
  max-width: 620px;
}

.max-w-\[1200px\] {
  max-width: 1200px;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-2\.5 {
  gap: 0.625rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-\[10px\] {
  border-radius: 10px;
}

.rounded-\[12px\] {
  border-radius: 12px;
}

.rounded-\[16px\] {
  border-radius: 16px;
}

.rounded-\[18px\] {
  border-radius: 18px;
}

.rounded-\[28px\] {
  border-radius: 28px;
}

.rounded-2xl {
  border-radius: 1rem;
}

.border {
  border-width: 1px;
}

.border-\[1\.5px\] {
  border-width: 1.5px;
}

.border-transparent {
  border-color: transparent;
}

.border-gray-200 {
  border-color: var(--color-gray-300);
}

.border-gray-300 {
  border-color: var(--color-gray-300);
}

.border-neutral-200 {
  border-color: var(--color-neutral-200);
}

.border-zinc-700 {
  border-color: #3f3f46;
}

.border-neutral-200\/10 {
  border-color: rgba(229, 229, 229, 0.1);
}

.border-neutral-200\/6 {
  border-color: rgba(229, 229, 229, 0.06);
}

.bg-white {
  background-color: #fff;
}

.bg-stone-50 {
  background-color: #fafaf9;
}

.bg-stone-100 {
  background-color: #f5f5f4;
}

.bg-zinc-50 {
  background-color: #fafafa;
}

.bg-\[\#f9f8f6\] {
  background-color: #f9f8f6;
}

.bg-\[\#f9f8f6\]\/60 {
  background-color: rgba(249, 248, 246, 0.6);
}

.\[background\:var\(--bg-cta-gradient\)\] {
  background: var(--bg-cta-gradient);
}

.\[background\:radial-gradient\(circle_at_center\,\#171c2e\,\#060810\)\] {
  background: radial-gradient(circle at center, #171c2e, #060810);
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-xxs {
  font-size: 0.625rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-white {
  color: #fff;
}

.text-slate-300 {
  color: #cbd5e1;
}

.text-slate-800 {
  color: var(--color-slate-800);
}

.text-gray-500 {
  color: var(--color-gray-500);
}

.text-gray-600 {
  color: var(--color-gray-600);
}

.text-gray-700 {
  color: var(--color-gray-700);
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-900 {
  color: #111827;
}

.text-neutral-300 {
  color: var(--color-neutral-300);
}

.text-zinc-400 {
  color: #a1a1aa;
}

.text-zinc-400\/75 {
  color: rgba(161, 161, 170, 0.75);
}

.text-\[var\(--color-primary\)\] {
  color: var(--color-primary);
}

.text-pretty {
  text-wrap: pretty;
}

.shadow-xs {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-black\/10 {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-neutral-200\/75 {
  box-shadow: 0 4px 6px -1px rgba(229, 229, 229, 0.75), 0 2px 4px -1px rgba(229, 229, 229, 0.75);
}

.\[box-shadow\:inset_0px_1px_0px_0px_rgba\(255\,255\,255\,0\.25\)\] {
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.25);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.cursor-pointer {
  cursor: pointer;
}

.hover\:bg-white:hover {
  background-color: #fff;
}

.hover\:border-zinc-300:hover {
  border-color: #d4d4d8;
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

/* Responsive styles */
@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }
  
  .sm\:inline-flex {
    display: inline-flex;
  }
  
  .sm\:mb-10 {
    margin-bottom: 2.5rem;
  }
  
  .sm\:pt-38 {
    padding-top: 9.5rem;
  }
}

@media (min-width: 768px) {
  .md\:text-lg {
    font-size: 1.125rem;
  }
  
  .md\:text-xl {
    font-size: 1.25rem;
  }
  
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
  }
  
  .md\:leading-10 {
    line-height: 2.5rem;
  }
  
  .md\:leading-\[100\%\] {
    line-height: 100%;
  }
  
  .md\:gap-x-8 {
    column-gap: 2rem;
  }
  
  .md\:gap-y-2\.5 {
    row-gap: 0.625rem;
  }
  
  .md\:pr-2 {
    padding-right: 0.5rem;
  }
  
  .md\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

/* Custom font loading */
@font-face {
  font-family: 'Manrope';
  src: url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');
  font-weight: 400 700;
  font-display: swap;
}

/* Fix for image paths */
img[src^="/_next/"] {
  content: url('https://placehold.co/1200x800/f9f8f6/333?text=Image+Placeholder');
}

/* Fix for the missing grid background */
.landing_grid-background__D_Oza {
  background-image: 
    radial-gradient(rgba(20, 20, 20, 0.1) 1px, transparent 1px),
    radial-gradient(rgba(20, 20, 20, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
} 

/* Add special handling for Videos in feature cards */
[data-sentry-component="FeatureCard"] .mb-7 video {
  max-width: 350px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 0 !important;
  /* Improve GIF performance */
  image-rendering: auto;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0); /* Hardware acceleration */
}

@media (min-width: 1024px) {
  [data-sentry-component="FeatureCard"] .mb-7 video {
      max-width: 400px;
  }
}

@media (min-width: 1440px) {
  [data-sentry-component="FeatureCard"] .mb-7 video {
      max-width: 450px;
  }
}

/* Add hover effects for Videos */
[data-sentry-component="FeatureCard"]:hover .mb-7 video {
  transform: scale(1.02) translateZ(0);
  transition: transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Adjust feature card structure to make the GIF fixed height and text flexible */
[data-sentry-component="FeatureCard"] {
  display: flex;
  flex-direction: column;
  height: auto;
}

[data-sentry-component="FeatureCard"] .mb-7 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
  min-height: 350px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

[data-sentry-component="FeatureCard"] .text-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

[data-sentry-component="FeatureCard"] .flex-col {
  display: flex;
  flex-direction: column;
  height: 100%;
} 