.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.glass-nav {
    background: rgba(19, 19, 19, 0.6);
    backdrop-filter: blur(20px);
}
.gradient-text {
    background: linear-gradient(135deg, #e757fc 0%, #e757fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-gradient {
    background: linear-gradient(135deg, #e757fc 0%, #a91bba 100%);
}
body {
    background-color: #131313;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e757fc' fill-opacity='0.30'%3E%3Cpath d='M59 55h2v4h4v2h-4v4h-2v-4h-4v-2h4v-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: #e2e2e2;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Editorial Serif Accent */
.font-serif,
.editorial-serif,
.editorial-accent {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
}

.font-serif.italic,
.editorial-serif.italic,
.editorial-accent.italic {
    font-style: italic;
}

/* 21st.dev Interactive Cards */
.interactive-cards-wrapper:hover .interactive-card::after {
    opacity: 1;
}
.interactive-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
    position: relative;
}
.interactive-card:hover::before {
    opacity: 1;
}
.interactive-card::before,
.interactive-card::after {
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: opacity 500ms;
    width: 100%;
    pointer-events: none;
}
.interactive-card::before {
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y), 
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    z-index: 3;
}
.interactive-card::after {  
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y), 
        rgba(231, 87, 252, 0.4),
        transparent 40%
    );
    z-index: 1;
}
.interactive-card > .card-content {
    background-color: #1b1b1b;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 1px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .interactive-card > .card-content {
        padding: 2.5rem;
    }
}

/* 21st.dev 3D Tilt Cards */
.tilt-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}
.tilt-card-inner {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    transform: rotateX(var(--rotateX, 0)) rotateY(var(--rotateY, 0));
    position: relative;
    border-radius: inherit;
    height: 100%;
}
.tilt-glare {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: var(--glare-opacity, 0);
    transition: opacity 0.3s;
    background: radial-gradient(
        circle at var(--glare-x, 50%) var(--glare-y, 50%), 
        rgba(255, 255, 255, 0.2), 
        transparent 50%
    );
    z-index: 10;
}

/* Custom Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #e757fc; /* brand-blue */
    border-radius: 8px;
    border: 2px solid #0f0f0f; /* Adds a nice "padded" look */
}

::-webkit-scrollbar-thumb:hover {
    background: #b94bc2; /* darker blue on hover */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #e757fc #0f0f0f;
}

/* By default, hide custom cursor elements on mobile and tablet */
.custom-cursor-dot,
.custom-cursor-ring {
    display: none;
}

/* Custom Cursor styles for PC/Desktop screen sizes */
@media (min-width: 1024px) {
    /* Custom Cursor hiding default completely */
    *, *::before, *::after, a, button, input, textarea, select {
        cursor: none !important;
    }

    /* Custom Cursor Elements */
    .custom-cursor-dot {
        display: block;
        width: 8px;
        height: 8px;
        background-color: #e757fc;
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s, background-color 0.3s ease-out;
    }

    .custom-cursor-ring {
        display: block;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(231, 87, 252, 0.5);
        background-color: transparent;
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease-out, border-color 0.3s ease-out, opacity 0.3s ease;
    }

    .custom-cursor-ring.hovering {
        width: 60px;
        height: 60px;
        background-color: rgba(231, 87, 252, 0.5); /* Filled circle smoothly */
        border-color: transparent;
        backdrop-filter: blur(2px);
    }
    /* Hide inner dot when hovering so the filled circle looks perfectly clean */
    .custom-cursor-dot.hovering {
        opacity: 0;
    }

    /* Dark tone variant for specific sections */
    .custom-cursor-dot.dark-tone {
        background-color: #0a0a0a !important;
    }
    .custom-cursor-ring.dark-tone {
        border-color: rgba(10, 10, 10, 0.5) !important;
    }
    .custom-cursor-ring.hovering.dark-tone {
        background-color: rgba(10, 10, 10, 0.5) !important;
        border-color: transparent !important;
    }

    /* Hide custom cursor when active on specific sections */
    .custom-cursor-dot.cursor-hidden,
    .custom-cursor-ring.cursor-hidden {
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Skeleton Loading State */
.skeleton-loading {
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    background-color: rgba(255, 255, 255, 0.05) !important;
    position: relative;
    overflow: hidden;
}

/* Optional shimmer effect across the skeleton */
.skeleton-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
}

.skeleton-loading > img {
    opacity: 0 !important;
}

@keyframes skeleton-pulse {
    0% { background-color: rgba(255, 255, 255, 0.03); }
    50% { background-color: rgba(255, 255, 255, 0.07); }
    100% { background-color: rgba(255, 255, 255, 0.03); }
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* Premium Minimal Entrance Animation */
.hero-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-finished .hero-reveal {
    opacity: 1;
    transform: translateY(0);
}

.preloader-finished .hero-reveal.delay-1 { transition-delay: 0.1s; }
.preloader-finished .hero-reveal.delay-2 { transition-delay: 0.2s; }
.preloader-finished .hero-reveal.delay-3 { transition-delay: 0.3s; }

/* Challenge Section Ambient Liquid Glow Effect */
.liquid-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    filter: blur(110px) saturate(1.5);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal when mouse is moving inside or hovered over the section */
#challenge-section:hover .liquid-container {
    opacity: 0.55;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    will-change: transform;
}

.blob-pink {
    background: radial-gradient(circle, #e757fc 0%, rgba(231, 87, 252, 0.4) 60%, transparent 100%);
    width: 380px;
    height: 380px;
}

.blob-purple {
    background: radial-gradient(circle, #a91bba 0%, rgba(169, 27, 186, 0.3) 60%, transparent 100%);
    width: 440px;
    height: 440px;
}

.blob-lavender {
    background: radial-gradient(circle, #e757fc 0%, rgba(231, 87, 252, 0.3) 60%, transparent 100%);
    width: 320px;
    height: 320px;
}

/* Mobile Typography Optimization */
@media (max-width: 767px) {
    body {
        line-height: 1.5; /* Optimize default body text line spacing on mobile */
    }
    
    /* Optimize relaxed body copy line spacing on mobile */
    .leading-relaxed {
        line-height: 1.5 !important;
    }
}

/* Scrub Card & 3D Container Styles */
.cards-3d-container {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.scrub-card {
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

/* From Uiverse.io by MuhammadHasann - Styled to match design system */ 
.button {
  --black-700: #1a1a1a;
  --border_radius: 1rem;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;

  cursor: pointer;
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  transform-origin: center;

  padding: 0.875rem 1.75rem;
  background-color: transparent;

  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.05)));

  transition: transform var(--transtion);
  font-family: 'Manrope', sans-serif;
}

@media (min-width: 768px) {
  .button {
    padding: 1rem 2rem;
  }
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background-color: var(--black-700);

  border-radius: var(--border_radius);
  box-shadow: inset 0 0.5px rgba(255, 255, 255, 0.1), inset 0 -1px 2px 0 rgba(0,0,0,0.5),
    0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
    0 0 0 calc(var(--active, 0) * 0.375rem) rgba(231, 87, 252, 0.4);

  transition: all var(--transtion);
  z-index: 0;
}

.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e757fc 0%, #a91bba 100%);
  
  opacity: var(--active, 0);
  border-radius: var(--border_radius);
  transition: opacity var(--transtion);
  z-index: 2;
}

.button:is(:hover, :focus-visible) {
  --active: 1;
}
.button:active {
  transform: scale(1);
}

.button .dots_border {
  --size_border: calc(100% + 2px);

  overflow: hidden;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;

  border-radius: var(--border_radius);
  z-index: -10;
}

.button .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);

  width: 100%;
  height: 2rem;
  background-color: white;

  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}

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

.button .sparkle-icon {
  position: relative;
  z-index: 10;
  font-size: 1.25rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.button:is(:hover, :focus) .sparkle-icon {
  transform: translateX(4px);
}

.button .text_button {
  position: relative;
  z-index: 10;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .button .text_button {
    font-size: 1rem;
  }
}



/* Custom Calendly Popup Styling */
.calendly-overlay .calendly-popup {
    border-radius: 24px !important;
    overflow: hidden !important;
    animation: popupFadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4) !important;
}

.calendly-overlay .calendly-popup-content {
    border-radius: 24px !important;
    overflow: hidden !important;
}

@keyframes popupFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Module Micro-Animations */
.module-micro-anim {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    min-height: 3.5rem;
    position: relative;
    border-radius: 1rem;
    background: radial-gradient(circle at center, rgba(231, 87, 252, 0.08) 0%, rgba(27, 27, 27, 0) 70%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.tilt-card:hover .module-micro-anim {
    background: radial-gradient(circle at center, rgba(231, 87, 252, 0.18) 0%, rgba(27, 27, 27, 0) 75%);
    filter: drop-shadow(0 0 12px rgba(231, 87, 252, 0.35));
}

.module-micro-anim svg {
    overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
    .module-micro-anim,
    .module-micro-anim *,
    .bento-card,
    .bento-card * {
        animation: none !important;
        transition: none !important;
    }
}

/* Bento Challenge Grid Styles */
.interactive-cards-wrapper {
    align-items: stretch;
}

.bento-card {
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    height: 100%;
    align-self: stretch;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 768px) {
    .bento-card {
        min-height: auto;
        border-radius: 1.5rem;
    }
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(231, 87, 252, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.bento-card:hover {
    border-color: rgba(231, 87, 252, 0.35);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.6), 0 0 30px rgba(231, 87, 252, 0.1);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-canvas {
    width: 100%;
    position: relative;
    z-index: 2;
}

.bento-canvas svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Card 4 - The Solution Distinctive Accent Style & Radiant Glow */
.bento-card[data-card="4"],
.bento-card.bento-solution-card {
    background: linear-gradient(145deg, rgba(231, 87, 252, 0.24) 0%, rgba(171, 18, 179, 0.18) 45%, rgba(24, 12, 26, 0.96) 100%), #171118;
    border: 1px solid rgba(231, 87, 252, 0.45);
    box-shadow: 0 0 35px rgba(231, 87, 252, 0.22), 0 20px 45px -12px rgba(231, 87, 252, 0.28);
    position: relative;
}

.bento-card[data-card="4"]::before {
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(231, 87, 252, 0.25), transparent 45%);
    opacity: 0.8;
}

.bento-card[data-card="4"] .bento-solution-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(231, 87, 252, 0.35) 0%, rgba(231, 87, 252, 0.08) 55%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.bento-card[data-card="4"]:hover {
    border-color: rgba(231, 87, 252, 0.8);
    box-shadow: 0 0 55px rgba(231, 87, 252, 0.45), 0 25px 60px -10px rgba(231, 87, 252, 0.5);
    transform: translateY(-3px);
}

.bento-card[data-card="4"]:hover::before {
    opacity: 1;
}

/* ==========================================================================
   Responsive Section Spacing & Vertical Rhythm System
   ========================================================================== */
.site-section {
    padding-top: 3.5rem;    /* 56px on mobile */
    padding-bottom: 3.5rem;
    padding-left: 1.25rem;  /* 20px */
    padding-right: 1.25rem;
    position: relative;
    width: 100%;
}

@media (min-width: 640px) {
    .site-section {
        padding-top: 4.5rem;    /* 72px */
        padding-bottom: 4.5rem;
        padding-left: 1.5rem;   /* 24px */
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .site-section {
        padding-top: 5.5rem;    /* 88px */
        padding-bottom: 5.5rem;
        padding-left: 2.5rem;   /* 40px */
        padding-right: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .site-section {
        padding-top: 7rem;      /* 112px */
        padding-bottom: 7rem;
        padding-left: 3rem;     /* 48px */
        padding-right: 3rem;
    }
}

@media (min-width: 1280px) {
    .site-section {
        padding-top: 7.5rem;    /* 120px */
        padding-bottom: 7.5rem;
    }
}

.section-header-spacing {
    margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
    .section-header-spacing {
        margin-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .section-header-spacing {
        margin-bottom: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .section-header-spacing {
        margin-bottom: 5rem;
    }
}

/* Hand-drawn Animated Double Underline */
.animated-underline {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}
.animated-underline svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 24px;
    overflow: visible;
    pointer-events: none;
    z-index: -1;
}
.animated-underline path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.animated-underline path.line-1 {
    transition-delay: 0.1s;
}
.animated-underline path.line-2 {
    transition-delay: 0.25s;
}
.animated-underline.in-view path {
    stroke-dashoffset: 0;
}

/* Pricing Tier Capsule & Responsive Card Styles */
#pricing-tier-switcher .pricing-pill-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 440px;
    padding: 4px;
    gap: 4px;
    border-radius: 9999px;
    background-color: rgba(23, 23, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.pricing-pill-btn {
    position: relative;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 9999px;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.25;
    padding: 6px 4px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-pill-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-pill-btn.active {
    background-color: #ffffff !important;
    color: #121212 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.35);
    transform: scale(1.02);
    z-index: 2;
}

@media (max-width: 360px) {
    .pricing-pill-btn {
        font-size: 10.5px;
        padding: 5px 2px;
    }
}

@media (min-width: 640px) {
    #pricing-tier-switcher .pricing-pill-container {
        display: inline-flex;
        width: auto;
        max-width: none;
        padding: 6px;
        gap: 8px;
    }
    .pricing-pill-btn {
        font-size: 14px;
        line-height: 1.5;
        padding: 8px 24px;
        white-space: nowrap;
        min-height: 42px;
    }
}

/* Pricing Table Content-Based Height on Mobile */
@media (max-width: 767px) {
    #pricing-included-list,
    #pricing-valuestack-list {
        min-height: auto !important;
    }
    .pricing-card-wrapper {
        height: auto !important;
        min-height: auto !important;
    }
}

@media (min-width: 768px) {
    #pricing-included-list,
    #pricing-valuestack-list {
        min-height: 340px;
    }
}

@keyframes skeletonPulse {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-shimmer-box {
    background: linear-gradient(
        90deg,
        rgba(230, 226, 240, 0.5) 0%,
        rgba(250, 248, 255, 0.95) 50%,
        rgba(230, 226, 240, 0.5) 100%
    );
    background-size: 200% 100%;
    animation: skeletonPulse 1.1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

.tier-fade-in {
    animation: tierFadeInAnim 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tierFadeInAnim {
    from {
        opacity: 0.15;
        transform: translateY(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


