@layer reset, base, components, utilities;

@layer reset {

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  ul,
  ol,
  li,
  figure,
  figcaption {
    margin: 0;
    padding: 0;
  }

  ul,
  ol {
    list-style: none;
  }

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

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

  button,
  input,
  select,
  textarea {
    font: inherit;
    background: transparent;
    border: none;
    outline: none;
  }
}

@layer base {
  :root {
    /* Color Space System */
    color-scheme: dark;

    /* Design Tokens */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Colors (Dark Mode Theme) */
    --color-bg-base: #06060c;
    --color-bg-surface: rgba(13, 13, 25, 0.4);
    --color-bg-surface-glass: rgba(18, 18, 35, 0.55);

    --color-primary: #8b5cf6;
    /* Violet */
    --color-primary-rgb: 139, 92, 246;
    --color-secondary: #0ea5e9;
    /* Cyan */
    --color-secondary-rgb: 14, 165, 233;
    --color-accent: #6366f1;
    /* Indigo */
    --color-accent-rgb: 99, 102, 241;

    --color-text-main: #f8fafc;
    /* Slate 50 */
    --color-text-subtle: #94a3b8;
    /* Slate 400 */
    --color-text-dark: #475569;
    /* Slate 600 */

    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-light: rgba(255, 255, 255, 0.04);
    --border-accent: rgba(139, 92, 246, 0.2);

    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7),
      0 1px 1px 0 rgba(255, 255, 255, 0.05) inset;
    --shadow-glow: 0 0 40px -10px rgba(139, 92, 246, 0.3);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    scroll-behavior: smooth;
  }

  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
  }

  /* Starry canvas backdrop */
  #stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0c0a1f 0%, var(--color-bg-base) 100%);
  }

  /* Outline styling for accessibility */
  *:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
  }
}

@layer components {

  /* ==========================================================================
     Utility Layout & Containers
     ========================================================================== */
  .container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
  }

  /* Section styling */
  section {
    padding-block: 8rem;
    position: relative;
    z-index: 1;
  }

  .section-header {
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 5rem;
  }

  .section-tagline {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 1.2rem + 3.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 30%, var(--color-text-subtle));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section-desc {
    color: var(--color-text-subtle);
    font-size: 1.125rem;
    font-weight: 400;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: nowrap;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(var(--color-primary-rgb), 0.3), var(--shadow-premium);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--color-primary-rgb), 0.45), var(--shadow-premium);
    filter: brightness(1.1);
  }

  .btn-secondary {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--color-text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
  }

  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .btn-nav {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #ffffff;
  }

  .btn-nav:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
  }

  /* Glassmorphism elements */
  .glass-card {
    background-color: var(--color-bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-premium);
  }


  /* ==========================================================================
     Navigation Header
     ========================================================================== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(6, 6, 12, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-glass-light);
    transition: all 0.4s ease;
  }

  .nav-container {
    max-width: 1240px;
    margin-inline: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .brand-logo {
    width: 32px;
    height: auto;
    object-fit: contain;
  }

  .brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, #ffffff 60%, var(--color-text-subtle));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .sec-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    letter-spacing: 0.03em;
    margin-right: auto;
    margin-left: 1.5rem;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary);
    animation: pulse 1.8s infinite;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }

  .nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-subtle);
    transition: color 0.25s ease;
    position: relative;
    padding-block: 0.25rem;
  }

  .nav-link:hover {
    color: var(--color-text-main);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: 2rem;
  }

  .mobile-menu-toggle {
    display: none;
    color: var(--color-text-main);
    cursor: pointer;
    z-index: 101;
  }

  /* Mobile drop-down styles */
  .mobile-menu {
    display: block;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: rgba(6, 6, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 99;
    padding: 2rem;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                visibility 0.4s;
  }

  .mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .mobile-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-subtle);
  }

  .mobile-link:hover {
    color: var(--color-text-main);
  }

  .btn-cta-mobile {
    width: 100%;
    text-align: center;
  }


  /* ==========================================================================
     Hero Section (Reference 1)
     ========================================================================== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    overflow: hidden;
  }

  .hero-container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-family: 'Bricolage Grotesque', 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 1.2rem + 4.2vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #ffffff;
  }

  .typed-text {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #a855f7; /* Initial theme color (Purple) */
    font-weight: 800;
    transition: color 0.4s ease;
  }

  .typed-cursor {
    color: #a855f7; /* Matching theme color */
    animation: blink-cursor 0.8s infinite;
    font-weight: 300;
    margin-left: 2px;
    transition: color 0.4s ease;
  }

  @keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-subtle);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.6;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
  }

  .hero-sec-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass-light);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    backdrop-filter: blur(8px);
  }

  .sec-icon {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
  }

  /* 3D Blob WebGL Container styles */
  .blob-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #blob-canvas-container {
    width: 120%;
    height: 120%;
    position: absolute;
    z-index: 1;
    cursor: grab;
  }
  
  #blob-canvas-container:active {
    cursor: grabbing;
  }

  /* Floating Widgets (Glassmorphic) */
  .floating-card {
    position: absolute;
    z-index: 5;
    background-color: rgba(18, 18, 35, 0.55);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    min-width: 190px;
  }

  .float-left {
    bottom: 20%;
    left: -5%;
    animation: float-card-left 7s ease-in-out infinite;
  }

  .float-right {
    top: 25%;
    right: -5%;
    animation: float-card-right 9s ease-in-out infinite;
  }

  .floating-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-subtle);
    margin-bottom: 0.75rem;
    gap: 1.5rem;
  }

  .arrow-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0c0a1f;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .arrow-circle i {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
  }

  .floating-card-body {
    display: flex;
    flex-direction: column;
  }

  .stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.725rem;
    color: var(--color-text-subtle);
  }

  .progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
  }

  .progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    transition: width 1.5s ease-out;
  }


  /* ==========================================================================
     Services Grid Section (Reference 2)
     ========================================================================== */
  .services {
    border-top: 1px solid var(--border-glass-light);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .service-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    position: relative;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(var(--color-primary-rgb), 0.12), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
  }

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

  .service-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    background-color: rgba(var(--color-primary-rgb), 0.1);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .service-icon {
    width: 24px;
    height: 24px;
  }

  .service-card:hover .service-icon-wrapper {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: scale(1.05);
  }

  .service-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
  }

  .service-card-desc {
    color: var(--color-text-subtle);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
  }

  /* 3D Tilt Visual container */
  .mockup-tilt-wrapper {
    width: 100%;
    aspect-ratio: 1.6;
    margin-top: auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .mockup-card {
    width: 100%;
    height: 90%;
    background-color: #0b0b14;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotateX(12deg) rotateY(-8deg) rotateZ(2deg);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover .mockup-card {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(-5px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .mockup-header {
    height: 28px;
    background-color: #12121e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    padding-inline: 0.75rem;
    gap: 0.35rem;
  }

  .mockup-header .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .mockup-title {
    font-size: 0.65rem;
    color: var(--color-text-dark);
    margin-left: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
  }

  /* Specific Mockup Contents */
  .mockup-code {
    padding: 1rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.68rem;
    color: var(--color-text-subtle);
    line-height: 1.4;
  }

  .code-keyword {
    color: #f472b6;
  }

  .code-name {
    color: #60a5fa;
  }

  .code-string {
    color: #34d399;
  }

  .code-comment {
    color: #64748b;
    font-style: italic;
  }

  .saas-metrics {
    padding: 0.75rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  }

  .saas-metric-item {
    display: flex;
    flex-direction: column;
  }

  .metric-lbl {
    font-size: 0.58rem;
    color: var(--color-text-dark);
  }

  .metric-val {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
  }

  .text-green {
    color: #10b981;
  }

  .text-blue {
    color: #3b82f6;
  }

  .saas-chart {
    flex-grow: 1;
    padding: 0.75rem 1.25rem 0.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.4rem;
  }

  .saas-chart .bar {
    flex-grow: 1;
    background: linear-gradient(to top, rgba(var(--color-primary-rgb), 0.2), var(--color-primary));
    border-radius: 2px 2px 0 0;
    min-height: 5px;
    animation: growBar 2s ease forwards;
    transform-origin: bottom;
  }

  /* Mobile App Mockup */
  .mobile-mockup {
    width: 50%;
    height: 95%;
    border-radius: 20px;
    background-color: #0b0b14;
    border: 3px solid #1c1c28;
    transform: rotateX(15deg) rotateY(12deg) rotateZ(-3deg);
    position: relative;
    padding: 0.4rem;
  }

  .service-card:hover .mobile-mockup {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(-5px) scale(1.05);
  }

  .mobile-notch {
    width: 40%;
    height: 10px;
    background-color: #1c1c28;
    border-radius: 0 0 8px 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .mobile-screen {
    width: 100%;
    height: 100%;
    background-color: #08080f;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
  }

  .app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }

  .app-icon {
    width: 10px;
    height: 10px;
    color: var(--color-text-dark);
  }

  .app-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
  }

  .app-balance-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .app-bal-lbl {
    font-size: 0.45rem;
    color: var(--color-text-dark);
    display: block;
  }

  .app-bal-val {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
  }

  .app-quick-actions {
    display: flex;
    gap: 0.35rem;
    flex-grow: 1;
  }

  .app-quick-actions .action-btn {
    flex-grow: 1;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
  }


  /* ==========================================================================
     Process Timeline
     ========================================================================== */
  .process {
    border-top: 1px solid var(--border-glass-light);
  }

  .process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
  }

  .process-timeline::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(var(--color-primary-rgb), 0.3), transparent);
    z-index: -1;
  }

  .process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process-num {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-bg-base);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
  }

  .process-item:hover .process-num {
    transform: scale(1.1);
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(var(--color-primary-rgb), 0.5);
  }

  .process-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .process-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
  }

  .process-card-desc {
    color: var(--color-text-subtle);
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .process-item:hover .process-card {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.02);
    transform: translateY(-5px);
  }


  /* ==========================================================================
     Testimonials Section (Reference 2 Stacked Card Deck)
     ========================================================================== */
  .testimonials {
    border-top: 1px solid var(--border-glass-light);
    overflow: hidden;
  }

  .testimonial-deck-container {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
    position: relative;
    padding-bottom: 4rem;
  }

  .testimonial-deck {
    position: relative;
    height: 380px;
    width: 100%;
    perspective: 1200px;
  }

  .testimonial-card {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: bottom center;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }

  /* Dynamic Card Stack Classes via JS */
  .testimonial-card.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    z-index: 5;
    pointer-events: auto;
  }

  .testimonial-card.next {
    opacity: 0.7;
    transform: translate3d(24px, 20px, -50px) scale(0.93) rotate(-3deg);
    z-index: 4;
  }

  .testimonial-card.last {
    opacity: 0.35;
    transform: translate3d(48px, 40px, -100px) scale(0.86) rotate(-6deg);
    z-index: 3;
  }

  .testimonial-card.swipe-out {
    opacity: 0;
    transform: translate3d(-300px, -50px, 0) scale(0.9) rotate(-15deg) !important;
    z-index: 6;
  }

  .quote-icon-wrapper {
    color: var(--color-primary);
    opacity: 0.15;
    margin-bottom: 1.5rem;
  }

  .quote-icon {
    width: 50px;
    height: 50px;
  }

  .testimonial-quote {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }

  .author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .avatar-placeholder {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
  }

  .author-info {
    display: flex;
    flex-direction: column;
  }

  .author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
  }

  .author-title {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
  }

  .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .deck-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background-color: var(--color-bg-surface-glass);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .deck-btn:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.4);
    transform: scale(1.05);
  }

  .deck-btn i {
    width: 20px;
    height: 20px;
  }


  /* ==========================================================================
     CTA Section with Fly-in Mockups (Reference 2)
     ========================================================================== */
  .cta-section {
    border-top: 1px solid var(--border-glass-light);
    padding-bottom: 10rem;
  }

  .cta-card {
    background: radial-gradient(circle at top right, rgba(var(--color-primary-rgb), 0.25), transparent 70%),
      var(--color-bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-xl);
    padding: 6rem 4rem;
    position: relative;
    overflow: visible;
    /* Must be visible for fly-in offsets */
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    text-align: center;
  }

  .cta-content {
    max-width: 600px;
    margin-inline: auto;
    position: relative;
    z-index: 10;
  }

  .cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 1.2rem + 3.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--color-text-subtle));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .cta-desc {
    color: var(--color-text-subtle);
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
  }

  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
  }

  .form-row {
    display: flex;
    gap: 1.25rem;
  }

  .form-input {
    flex: 1;
    background-color: rgba(6, 6, 12, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 1.15rem 1.5rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .form-input:focus {
    border-color: var(--color-primary);
    background-color: rgba(6, 6, 12, 0.65);
    box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.15);
  }

  /* Select reset color styling */
  select.form-input {
    color: var(--color-text-subtle);
  }

  select.form-input option {
    background-color: var(--color-bg-base);
    color: #ffffff;
  }

  .form-textarea {
    min-height: 140px;
    resize: none;
    line-height: 1.5;
  }

  .btn-submit {
    width: 100%;
    padding: 1.15rem 2rem;
    border-radius: var(--border-radius-md);
  }

  /* Form Success Message */
  .success-message {
    display: none;
    padding-block: 2rem;
  }

  .success-message.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.6s ease forwards;
  }

  .success-check-icon {
    width: 64px;
    height: 64px;
    color: #10b981;
    margin-bottom: 1.5rem;
  }

  .success-message h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .success-message p {
    color: var(--color-text-subtle);
  }

  /* ==========================================
     Fly-in Corner Mockups
     ========================================== */
  .fly-in-element {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  }

  /* Initial hidden positions (far away offsets) */
  .fly-tl {
    top: -50px;
    left: -120px;
    transform: translate3d(-100px, -100px, 0) rotate(-20deg) scale(0.85);
    opacity: 0;
  }

  .fly-tr {
    top: -30px;
    right: -120px;
    transform: translate3d(100px, -100px, 0) rotate(20deg) scale(0.85);
    opacity: 0;
  }

  .fly-bl {
    bottom: -50px;
    left: -120px;
    transform: translate3d(-100px, 100px, 0) rotate(-15deg) scale(0.85);
    opacity: 0;
  }

  .fly-br {
    bottom: -30px;
    right: -120px;
    transform: translate3d(100px, 100px, 0) rotate(15deg) scale(0.85);
    opacity: 0;
  }

  /* Active visible reveal states */
  .cta-card.visible .fly-tl {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
    opacity: 1;
    animation: gentle-float-1 8s ease-in-out infinite 1.2s;
  }

  .cta-card.visible .fly-tr {
    transform: translate3d(0, 0, 0) rotate(8deg) scale(1);
    opacity: 1;
    animation: gentle-float-2 10s ease-in-out infinite 1.2s;
  }

  .cta-card.visible .fly-bl {
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
    opacity: 1;
    animation: gentle-float-3 9s ease-in-out infinite 1.2s;
  }

  .cta-card.visible .fly-br {
    transform: translate3d(0, 0, 0) rotate(6deg) scale(1);
    opacity: 1;
    animation: gentle-float-4 11s ease-in-out infinite 1.2s;
  }

  /* Component elements definitions inside fly-ins */
  .app-window {
    width: 200px;
    background-color: #0b0b14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.65rem;
    box-shadow: var(--shadow-premium);
    text-align: left;
  }

  .window-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.25rem;
  }

  .window-dot.red {
    background-color: #ef4444;
  }

  .window-dot.yellow {
    background-color: #f59e0b;
  }

  .window-dot.green {
    background-color: #10b981;
  }

  .window-title {
    font-size: 0.55rem;
    color: var(--color-text-dark);
    margin-left: 0.5rem;
  }

  .code-snippet {
    margin-top: 0.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.65rem;
    color: var(--color-text-subtle);
  }

  .wallet-badge {
    background-color: rgba(18, 18, 35, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.25rem;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .wallet-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
  }

  .wallet-data {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .w-lbl {
    font-size: 0.55rem;
    color: var(--color-text-dark);
  }

  .w-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
  }

  .badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-premium);
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .success-icon {
    width: 16px;
    height: 16px;
  }

  .mini-chart-card {
    background-color: rgba(18, 18, 35, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 120px;
  }

  .mini-chart-line {
    height: 16px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4), transparent);
    border-bottom: 1.5px solid var(--color-secondary);
    border-radius: 4px;
  }

  .chart-value {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
  }


  /* ==========================================================================
     Footer Area
     ========================================================================== */
  .footer {
    background-color: #040408;
    border-top: 1px solid var(--border-glass-light);
    padding-top: 6rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 1.3fr;
    gap: 4rem;
    margin-bottom: 5rem;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-tagline {
    color: var(--color-text-subtle);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 280px;
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--color-text-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.06);
  }

  .social-link i {
    width: 16px;
    height: 16px;
  }

  .footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.01em;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    transition: color 0.25s ease;
  }

  .footer-links a:hover {
    color: #ffffff;
  }

  /* SEC Card styling */
  .sec-details-card {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass-light);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    backdrop-filter: blur(8px);
  }

  .sec-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.5rem;
  }

  .sec-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    box-shadow: 0 0 8px var(--color-secondary);
  }

  .sec-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .sec-info-list li {
    display: flex;
    flex-direction: column;
    font-size: 0.825rem;
    line-height: 1.4;
  }

  .sec-info-list .lbl {
    font-size: 0.68rem;
    color: var(--color-text-dark);
    font-weight: 600;
  }

  .sec-info-list .val {
    color: var(--color-text-main);
  }

  .sec-verify-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-main);
    transition: all 0.3s ease;
  }

  .sec-verify-link:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.06);
  }

  .sec-verify-link i {
    width: 12px;
    height: 12px;
  }

  /* Massive watermark text */
  .footer-bg-text {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(8rem, 2rem + 15vw, 18rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(139, 92, 246, 0.02);
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-block: 2rem;
    margin-top: 2rem;
  }

  .footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .copyright {
    font-size: 0.85rem;
    color: var(--color-text-dark);
  }

  .regulatory-disclaimer {
    font-size: 0.725rem;
    color: var(--color-text-dark);
    max-width: 800px;
    line-height: 1.5;
  }
}

@layer utilities {

  /* ==========================================
     Scroll Reveal Core Classes
     ========================================== */
  body.js-ready .reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(5px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
      transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
      filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.js-ready .reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  /* Stagger delays utilities */
  body.js-ready .services-grid>.reveal:nth-child(2) {
    transition-delay: 0.15s;
  }

  body.js-ready .services-grid>.reveal:nth-child(3) {
    transition-delay: 0.3s;
  }

  body.js-ready .process-timeline>.reveal:nth-child(1) {
    transition-delay: 0s;
  }

  body.js-ready .process-timeline>.reveal:nth-child(2) {
    transition-delay: 0.15s;
  }

  body.js-ready .process-timeline>.reveal:nth-child(3) {
    transition-delay: 0.3s;
  }

  body.js-ready .process-timeline>.reveal:nth-child(4) {
    transition-delay: 0.45s;
  }

  /* Animations definitions */
  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    }

    70% {
      transform: scale(1);
      box-shadow: 0 0 0 6px rgba(14, 165, 233, 0);
    }

    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
  }

  @keyframes growBar {
    from {
      transform: scaleY(0);
    }

    to {
      transform: scaleY(1);
    }
  }

  @keyframes float-card-left {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-12px) rotate(-1.5deg);
    }

    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }

  @keyframes float-card-right {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-16px) rotate(2deg);
    }

    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }

  /* Gentle float loops for CTA corner mockups */
  @keyframes gentle-float-1 {
    0% {
      transform: rotate(-8deg) translateY(0);
    }

    50% {
      transform: rotate(-9.5deg) translateY(-8px);
    }

    100% {
      transform: rotate(-8deg) translateY(0);
    }
  }

  @keyframes gentle-float-2 {
    0% {
      transform: rotate(8deg) translateY(0);
    }

    50% {
      transform: rotate(6.5deg) translateY(-6px);
    }

    100% {
      transform: rotate(8deg) translateY(0);
    }
  }

  @keyframes gentle-float-3 {
    0% {
      transform: rotate(-6deg) translateY(0);
    }

    50% {
      transform: rotate(-4.5deg) translateY(-10px);
    }

    100% {
      transform: rotate(-6deg) translateY(0);
    }
  }

  @keyframes gentle-float-4 {
    0% {
      transform: rotate(6deg) translateY(0);
    }

    50% {
      transform: rotate(7.5deg) translateY(-7px);
    }

    100% {
      transform: rotate(6deg) translateY(0);
    }
  }

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

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

  @keyframes morph-blob {
    0% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
      border-radius: 53% 47% 43% 57% / 51% 56% 44% 49%;
    }

    50% {
      border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%;
    }

    75% {
      border-radius: 55% 45% 48% 52% / 58% 42% 58% 42%;
    }

    100% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
  }
}


/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet Viewports */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 6rem;
  }

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

  .hero-subtitle {
    margin-inline: auto;
  }

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

  .blob-wrapper {
    max-width: 480px;
    margin-inline: auto;
  }

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



  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .process-timeline::after {
    display: none;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* Mobile Viewports */
@media (max-width: 768px) {
  section {
    padding-block: 4.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Hide crowded SEC badge in navbar on mobile to avoid squeezing elements */
  .sec-badge {
    display: none !important;
  }



  /* Stack hero CTA buttons vertically so they fit and center neatly */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }

  /* Adjust floating widgets to fit smaller mobile widths */
  .floating-card {
    min-width: 135px;
    padding: 0.75rem;
  }

  .float-left {
    left: 8px;
    bottom: 15%;
  }

  .float-right {
    right: 8px;
    top: 15%;
  }

  /* Service card improvements to prevent code block or mockup overflows */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
  }

  .mockup-tilt-wrapper {
    aspect-ratio: 1.4;
  }

  .mockup-code {
    padding: 0.75rem;
    font-size: 0.65rem;
  }

  /* Process steps styling - center content */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-item {
    align-items: center;
    text-align: center;
  }

  .process-card {
    padding: 1.5rem;
    width: 100%;
  }

  .process-num {
    margin-bottom: 1rem;
  }

  /* Testimonials deck card alignment & overflow prevention */
  .testimonial-deck {
    height: 440px;
    width: 100%;
  }

  .testimonial-card {
    width: calc(100% - 24px); /* restrict width to compensate for translation offsets */
    padding: 1.75rem 1.5rem;
  }

  .testimonial-card.next {
    transform: translate3d(12px, 15px, -50px) scale(0.94) rotate(-2deg);
  }

  .testimonial-card.last {
    transform: translate3d(24px, 30px, -100px) scale(0.88) rotate(-4deg);
  }

  /* CTA / Contact Form sizing & centering */
  .cta-card {
    padding: 3rem 1.5rem;
  }

  /* Disable fly-in graphics on small mobile screens to keep layout clean */
  .fly-in-element {
    display: none !important;
  }

  .form-row {
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  /* Footer responsiveness */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Hide massive background text to prevent lateral scroll issues on mobile */
  .footer-bg-text {
    display: none !important;
  }

  .footer-bottom-container {
    gap: 0.75rem;
    padding-inline: 1rem;
  }
}