/* Cascade Layers */
@layer reset, base, theme, layout, components, responsive;

@layer reset {
  /* Box-sizing and resets */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* Document defaults */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 4.5rem;
    -webkit-text-size-adjust: 100%;
    max-width: 100%;
  }

  body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
  }

  /* Media elements responsive */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }

  input, button, textarea, select {
    font: inherit;
  }

  /* Accessibility reduced motion */
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}

@layer base {
  :root {
    /* Color Palette - Vantage Premium Light Mode (Luxury Green style) */
    --color-primary: #006039; /* Rolex Deep Forest Green */
    --color-primary-hover: #004F30;
    --color-navy: #0A2540; /* High-end Deep Slate Navy */
    --color-orange: #C5A059; /* Rolex Gold Accent */
    --color-orange-hover: #A37E2C;
    
    /* Grays & Neutrals */
    --color-white: #FFFFFF;
    --color-slate-50: #F8FAFC;
    --color-slate-100: #F1F5F9;
    --color-slate-200: #E2E8F0;
    --color-slate-300: #CBD5E1;
    --color-slate-400: #94A3B8;
    --color-slate-500: #64748B;
    --color-slate-800: #1E293B;
    --color-slate-900: #0F172A;

    /* Typographic Weights */
    --font-family-body: 'Geist', system-ui, -apple-system, sans-serif;
    --font-family-headings: 'Newsreader', Georgia, serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-xxl: 5rem;

    /* Borders & Shadows */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --border-radius-pill: 9999px;

    /* Precision Soft Shadow Palette */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 10px 20px -8px rgba(15, 23, 42, 0.06);

    /* Gradients Interpolated in Oklab for visual smoothness */
    --gradient-hero: linear-gradient(135deg in oklab, var(--color-white) 60%, var(--color-slate-50) 100%);
    --gradient-accent: linear-gradient(135deg in oklab, var(--color-navy), var(--color-primary));
  }

  body {
    background-color: var(--color-white);
    color: var(--color-slate-800);
    font-family: var(--font-family-body);
    font-size: 0.95rem; /* Mobile body font */
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Accessibility custom scrollbars */
  scrollbar-color: var(--color-slate-300) var(--color-slate-50);
  scrollbar-width: thin;

  /* Headings with balanced wraps and modern styling */
  h1, h2, h3, h4 {
    font-family: var(--font-family-headings);
    color: var(--color-slate-900);
    font-weight: 600;
    line-height: 1.2;
    text-wrap: balance;
  }

  p {
    text-wrap: pretty;
  }

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

  /* Clean focus indicators */
  a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
  }
}

@layer layout {
  .container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-sm); /* Tight mobile margins */
  }

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

  .section-header {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
  }

  .section-title {
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    color: var(--color-slate-500);
    font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.15rem);
  }
}

@layer components {
  /* Badges */
  .badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-family: var(--font-family-headings);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--color-slate-100);
    color: var(--color-primary);
    border-radius: var(--border-radius-pill);
    margin-bottom: var(--space-xs);
  }

  .badge-orange {
    background-color: #FFF0EB;
    color: var(--color-orange);
  }

  /* Buttons - Mobile First Touch Target optimized */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-headings);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem; /* Large touch area */
    min-block-size: 44px; /* WCAG Pointer Target Safety */
    border-radius: var(--border-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }

  .btn-large {
    padding: 0.95rem 1.8rem;
    font-size: 1rem;
    min-block-size: 50px;
  }

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
  }

  .btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
  }

  .btn-secondary {
    background-color: var(--color-white);
    color: var(--color-slate-800);
    border-color: var(--color-slate-200);
  }

  .btn-secondary:hover {
    background-color: var(--color-slate-50);
    border-color: var(--color-slate-300);
    transform: translateY(-1px);
  }

  .btn-block {
    display: flex;
    width: 100%;
  }

  /* Header - Mobile First Drawer Menu */
  .main-header {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-slate-100);
    transition: all 0.3s ease;
  }

  .main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
  }

  .header-container {
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--space-sm);
  }

  .logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-navy);
  }

  .logo-text {
    letter-spacing: -0.01em;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 15%; /* Takes up 85% width for comfortable reading and touching */
    background-color: #FFFFFF; /* Pure solid white background */
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
    z-index: 9999; /* Highest priority to stack above all hero and sections content */
    padding: 6rem var(--space-md) var(--space-lg);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100vh;
    overflow-y: auto;
  }

  .primary-navigation.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: var(--space-md);
  }

  .nav-link {
    font-family: var(--font-family-headings);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-slate-800);
    padding-block: 0.5rem;
    display: block;
    transition: color 0.2s ease;
  }

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

  .nav-link.active {
    color: var(--color-primary);
    font-weight: 700;
  }

  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-navy);
    z-index: 100;
    padding: 0.5rem;
  }

  /* Header CTA hidden on mobile by default */
  .header-cta {
    display: none;
  }
  
  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    border-top: 1px solid var(--color-slate-100);
    padding-top: var(--space-md);
    margin-top: var(--space-lg);
  }

  /* Hero Layout - Mobile First Stacked */
  .hero-section {
    padding-block: var(--space-lg) var(--space-lg);
    background: var(--gradient-hero);
    position: relative;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 1.4rem + 3vw, 3.25rem);
    letter-spacing: -0.03em;
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.2rem);
    color: var(--color-slate-500);
    margin-bottom: var(--space-md);
    max-width: 600px;
    margin-inline: auto;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
  }

  .hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }

  .trust-avatars {
    display: flex;
  }

  .avatar-placeholder {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--color-slate-300);
    border: 2px solid var(--color-white);
    margin-left: -0.75rem;
  }

  .avatar-placeholder:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, #006039, #C5A059);
  }
  .avatar-placeholder:nth-child(2) {
    background: linear-gradient(135deg, #C5A059, #A37E2C);
  }
  .avatar-placeholder:nth-child(3) {
    background: linear-gradient(135deg, #0f172a, #64748b);
  }

  .trust-text {
    font-size: 0.8rem;
    color: var(--color-slate-500);
  }

  /* Video wrapper frame style */
  .video-container-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    background-color: var(--color-white);
    padding: 0.35rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-slate-100);
    overflow: hidden;
  }

  .video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--border-radius-md) - 4px);
    overflow: hidden;
  }

  .video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.75) 0%, rgba(10, 37, 64, 0.2) 60%, rgba(10, 37, 64, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-sm);
    color: var(--color-white);
  }

  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .play-btn::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: pulsePlay 2s infinite;
    pointer-events: none;
  }

  @keyframes pulsePlay {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
  }

  .video-overlay-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
  }

  .video-duration {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
  }

  .video-title {
    font-family: var(--font-family-headings);
    font-weight: 600;
    font-size: 1rem;
  }

  /* Problem Pain Points - Mobile First Stacked */
  .problem-section {
    padding-block: var(--space-xxl);
    background-color: var(--color-slate-50);
    border-block: 1px solid var(--color-slate-200);
  }

  .problem-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .poc-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .problem-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--border-radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .problem-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-slate-50);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xs);
    border: 1px solid var(--color-slate-100);
  }

  .problem-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
  }

  .problem-card-desc {
    color: var(--color-slate-500);
    font-size: 0.9rem;
  }

  /* SaaS Showcase Zebra - Mobile First Stacked */
  .showcase-section {
    padding-block: var(--space-xl);
  }

  .showcase-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
  }

  .showcase-item:last-child {
    margin-bottom: 0;
  }

  .showcase-num {
    font-family: var(--font-family-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
  }

  .showcase-item-title {
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
  }

  .showcase-item-desc {
    color: var(--color-slate-500);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
  }

  .showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .showcase-list li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-slate-800);
  }

  .showcase-list svg {
    color: var(--color-primary);
    flex-shrink: 0;
  }

  /* Browser mockups responsive */
  .browser-frame {
    background-color: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

  .browser-header {
    background-color: var(--color-slate-50);
    border-bottom: 1px solid var(--color-slate-200);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }

  .browser-dots {
    display: flex;
    gap: 5px;
  }

  .browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-slate-300);
  }

  .browser-dots span:first-child { background-color: #FF5F56; }
  .browser-dots span:nth-child(2) { background-color: #FFBD2E; }
  .browser-dots span:last-child { background-color: #27C93F; }

  .browser-address {
    flex-grow: 1;
    background-color: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--color-slate-400);
    padding: 0.1rem 0.5rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .browser-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3.4;
  }

  /* Marketing Services - Mobile First Stacked */
  .marketing-section {
    padding-block: var(--space-xl);
    background-color: var(--color-slate-50);
    border-block: 1px solid var(--color-slate-100);
  }

  .marketing-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .marketing-title {
    font-size: clamp(1.65rem, 1.3rem + 1.5vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
  }

  .marketing-subtitle {
    color: var(--color-slate-500);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }

  .marketing-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .marketing-feat-item {
    display: flex;
    gap: var(--space-xs);
  }

  .feat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #FFF0EB;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
  }

  .feat-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
  }

  .feat-desc {
    color: var(--color-slate-500);
    font-size: 0.9rem;
  }

  .stats-dashboard {
    background-color: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 0.35rem;
  }

  .stats-img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--border-radius-md) - 4px);
  }

  /* USP / PoC Counter - Mobile First Stacked */
  .poc-section {
    padding-block: var(--space-xl);
    background: var(--gradient-accent);
    color: var(--color-white);
  }

  .poc-section .badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
  }

  .poc-section .section-title, .poc-section .poc-title, .poc-section .poc-subtitle {
    color: var(--color-white);
  }

  .poc-title {
    font-size: clamp(1.65rem, 1.3rem + 1.5vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
  }

  .poc-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }

  .counter-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .counter-item {
    padding-block: var(--space-xs);
  }

  .counter-number {
    font-family: var(--font-family-headings);
    font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: var(--space-xs);
    background: linear-gradient(135deg in oklch, #FFFFFF, #96C2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .counter-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  /* Contact Form - Mobile First Stacked */
  .contact-section {
    padding-block: var(--space-xl);
    background-color: var(--color-slate-50);
  }

  .contact-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
  }

  .contact-content {
    background: linear-gradient(135deg in oklab, var(--color-navy), #143D66);
    color: var(--color-white);
    padding: var(--space-md);
  }

  .contact-title {
    color: var(--color-white);
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
  }

  .contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }

  .contact-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-bullets .bullet {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    font-size: 0.9rem;
  }

  .contact-bullets svg {
    color: var(--color-orange);
    flex-shrink: 0;
  }

  .contact-form-wrapper {
    padding: var(--space-md);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-slate-800);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .form-input {
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: var(--color-slate-50);
  }

  .form-input:focus {
    background-color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
    outline: none;
  }

  .form-input:user-invalid {
    border-color: #D32F2F;
    background-color: #FFEBEE;
  }

  .form-input:user-valid {
    border-color: #2E7D32;
  }

  .form-disclaimer {
    font-size: 0.7rem;
    color: var(--color-slate-400);
    line-height: 1.4;
  }

  /* Corporate Footer - Mobile First Stacked */
  .main-footer {
    background-color: var(--color-navy);
    color: var(--color-slate-400);
    padding-block: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-footer .logo-text, .main-footer .footer-title {
    color: var(--color-white);
  }

  .logo-footer {
    margin-bottom: var(--space-xs);
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .footer-desc {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    max-width: 420px;
    line-height: 1.6;
  }

  .footer-address {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .footer-links a {
    font-size: 0.85rem;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: var(--color-white);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-sm);
    display: flex;
    flex-direction: column-reverse;
    gap: var(--space-sm);
    text-align: center;
  }

  .copyright {
    font-size: 0.8rem;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
  }

  .social-links a {
    color: var(--color-slate-400);
    transition: color 0.2s ease;
  }

  .social-links a:hover {
    color: var(--color-white);
  }

  /* Utility helpers */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Immersive Video Modal */
  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .video-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
  }

  .video-modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .video-modal-content {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 900px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .video-modal[aria-hidden="false"] .video-modal-content {
    transform: scale(1);
  }

  .video-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 10;
    background-color: var(--color-slate-100);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-slate-800);
  }

  .video-aspect-wrapper {
    aspect-ratio: 16 / 9;
    background-color: var(--color-slate-900);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-demo-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle in oklab, #0f2744 0%, #061120 100%);
    color: var(--color-white);
  }

  .modal-video-playing-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }

  .loading-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .modal-spinner {
    animation: rotateSpinner 2s linear infinite;
    width: 32px;
    height: 32px;
  }

  .modal-spinner .path {
    stroke: var(--color-primary);
    stroke-linecap: round;
    animation: dashSpinner 1.5s ease-in-out infinite;
  }

  @keyframes rotateSpinner {
    100% { transform: rotate(360deg); }
  }

  @keyframes dashSpinner {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
  }
}

/* Progressive Enhancement - Media Queries (min-width) */
@layer responsive {
  /* Tablet / Small Desktop Viewports */
  @media (min-width: 768px) {
    body {
      font-size: 1rem;
    }

    .container {
      padding-inline: var(--space-md);
    }

    .header-container {
      padding-inline: var(--space-md);
    }

    .logo-link {
      font-size: 1.25rem;
    }

    /* Shift CTA and navigation layout for tablets */
    .header-cta {
      display: flex;
      align-items: center;
      gap: var(--space-md);
    }
    .mobile-menu-cta {
      display: none !important;
    }

    .hero-section {
      padding-block: var(--space-xl) var(--space-lg);
    }

    .hero-actions {
      flex-direction: row;
      justify-content: center;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
    }

    .poc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }

    .problem-card {
      padding: var(--space-lg);
    }

    .showcase-item {
      gap: var(--space-lg);
    }

    .counter-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
    }

    .contact-card {
      border-radius: var(--border-radius-lg);
    }

    .contact-content {
      padding: var(--space-lg);
    }

    .contact-form-wrapper {
      padding: var(--space-lg);
    }

    .footer-grid {
      grid-template-columns: 1fr 1.2fr;
      gap: var(--space-xl);
    }

    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }

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

  /* Desktop Viewports */
  @media (min-width: 1024px) {
    /* Completely hide mobile toggle and lay out menu inline */
    .mobile-nav-toggle {
      display: none;
    }

    .primary-navigation {
      position: static;
      background: none;
      box-shadow: none;
      padding: 0;
      width: auto;
      transform: none;
      visibility: visible;
      pointer-events: auto;
      height: auto;
      overflow-y: visible;
      left: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--space-lg);
    }

    .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
      padding-block: 0.25rem;
    }

    /* Animate active link underline on hover for desktop */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--color-primary);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-link:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-link.active {
      color: var(--color-primary) !important;
      font-weight: 700;
    }

    .nav-link.active::after {
      transform: scaleX(1) !important;
      transform-origin: left !important;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: var(--space-xl);
      text-align: left;
    }

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

    .hero-actions {
      justify-content: flex-start;
    }

    .hero-trust {
      flex-direction: row;
      align-items: center;
    }

    .problem-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .problem-card:hover {
      border-color: var(--color-primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .showcase-item {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: var(--space-xl);
      align-items: center;
      margin-bottom: var(--space-xxl);
    }

    .showcase-reverse {
      grid-template-columns: 1.2fr 1fr;
    }

    .showcase-reverse .showcase-content {
      grid-column: 2;
    }

    .showcase-reverse .showcase-visual {
      grid-column: 1;
      grid-row: 1;
    }

    .marketing-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: var(--space-xl);
      align-items: center;
    }

    .contact-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .contact-content {
      padding: var(--space-xl);
    }

    .contact-form-wrapper {
      padding: var(--space-xl);
    }

    .footer-desc {
      margin-bottom: var(--space-md);
    }
  }
}

/* Custom global utility classes for premium typography overrides */
.font-newsreader {
  font-family: var(--font-family-headings) !important;
}
.italic {
  font-style: italic !important;
}
.text-rolex-green {
  color: var(--color-primary) !important;
}

/* Mobile viewport optimization for 390px and 375px wide devices */
@media (max-width: 400px) {
  :root {
    --space-xxl: 2.25rem;
    --space-xl: 1.75rem;
    --space-lg: 1.25rem;
    --space-md: 0.85rem;
    --space-sm: 0.65rem;
    --space-xs: 0.45rem;
  }
  
  body {
    font-size: 0.88rem;
  }

  .container {
    padding-inline: 0.75rem !important;
  }

  .hero-title {
    font-size: 1.95rem !important;
    line-height: 1.2 !important;
  }
  
  .hero-subtitle {
    font-size: 0.95rem !important;
  }

  .section-title {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  .flow-title {
    font-size: 1.35rem !important;
  }

  .btn {
    width: 100% !important;
    padding-inline: var(--space-sm) !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    justify-content: center !important;
    display: inline-flex !important;
  }
  
  .btn-large {
    padding-block: 0.75rem !important;
    font-size: 0.95rem !important;
  }

  /* Prevent long text overlaps in cards */
  .timeline-grid {
    gap: var(--space-md) !important;
  }

  .mockup-container {
    max-width: 100% !important;
    margin-inline: 0 !important;
  }
}

/* ==========================================================================
   Interactive ROI Calculator Section Styles
   ========================================================================== */
.calculator-section {
  background-color: var(--color-slate-50);
  border-block: 1px solid var(--color-slate-200);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 1024px) {
  .calculator-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.calc-inputs {
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.calc-control-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--color-navy);
}

.calc-slider-title {
  font-family: var(--font-family-body);
  font-size: 1rem;
}

.calc-slider-value {
  font-family: var(--font-family-headings);
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 800;
}

/* Custom range sliders styling */
.calc-slider-input {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--color-slate-200);
  border-radius: var(--border-radius-pill);
  outline: none;
  margin-block: var(--space-xs);
}

.calc-slider-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: var(--color-slate-200);
  border-radius: var(--border-radius-pill);
}

.calc-slider-input::-webkit-slider-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform 0.1s ease, background-color 0.1s ease;
}

.calc-slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--color-primary-hover);
}

/* Mozilla Firefox sliders */
.calc-slider-input::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: var(--color-slate-200);
  border-radius: var(--border-radius-pill);
}

.calc-slider-input::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform 0.1s ease;
}

.calc-slider-input::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.calc-slider-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-slate-400);
  font-weight: 600;
}

/* CPA Info row */
.calc-cpa-info {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--border-radius-sm);
  padding: var(--space-xs) var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-slate-600);
}

.calc-cpa-info strong {
  color: var(--color-navy);
}

/* Results Card styles (glassmorphism/luxury card) */
.calc-results-card {
  background: linear-gradient(135deg in oklab, var(--color-primary), #023822);
  color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .calc-results-card {
    padding: var(--space-lg);
  }
}

.calc-results-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 96, 57, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Calculator States (Locked, Loading, Revealed) */
.calc-state-locked .calc-result-hide {
  display: none !important;
}

.calc-state-locked .calc-result-show-locked {
  display: flex !important;
}

.calc-result-show-locked {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding-block: var(--space-xl);
}

.calc-lock-icon {
  font-size: 2.5rem;
  animation: pulseLock 2s infinite ease-in-out;
}

@keyframes pulseLock {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

.calc-lock-text {
  font-family: var(--font-family-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 280px;
  line-height: 1.5;
}

/* Loading state */
.calc-state-loading .calc-result-hide {
  display: none !important;
}

.calc-state-loading .calc-result-show-loading {
  display: flex !important;
}

.calc-result-show-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding-block: var(--space-xl);
}

.calc-loader-ring {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: var(--color-orange);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
  100% { transform: rotate(360deg); }
}

.calc-loading-text {
  font-family: var(--font-family-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-orange);
}

/* Revealed state styling */
.calc-state-revealed .calc-result-hide {
  display: flex;
}

.calc-state-revealed .calc-result-show-locked {
  display: none !important;
}

.calc-state-revealed .calc-result-show-loading {
  display: none !important;
}

.calc-result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.calc-result-label {
  font-family: var(--font-family-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-profit-value {
  font-family: var(--font-family-headings);
  font-size: clamp(2rem, 1.8rem + 2vw, 3.25rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.calc-minus-costs {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}

.calc-roi-badge {
  background-color: rgba(0, 138, 82, 0.2);
  border: 1px solid rgba(0, 138, 82, 0.4);
  color: #2ecc71;
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-family-body);
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: popBadge 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popBadge {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.calc-btn-reveal {
  background: var(--color-white);
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.calc-btn-reveal:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 96, 57, 0.2);
}

/* Dynamic funnel breakdown styling */
.calc-funnel-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--border-radius-sm);
  padding: var(--space-sm) var(--space-xs);
  margin-block: var(--space-xs);
  text-align: center;
}

.calc-funnel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--color-slate-200);
}

.calc-funnel-stage:last-child {
  border-right: none;
}

.calc-funnel-num {
  font-family: var(--font-family-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.calc-funnel-label {
  font-size: 0.72rem;
  color: var(--color-slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Static metrics comparison box (CPA & Rohertrag) */
.calc-static-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-block: var(--space-xs);
}

@media (min-width: 576px) {
  .calc-static-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

.calc-static-metric {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--border-radius-sm);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.calc-static-label {
  font-size: 0.78rem;
  color: var(--color-slate-500);
  font-weight: 600;
}

.calc-static-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.calc-static-info {
  font-size: 0.78rem;
  color: var(--color-slate-500);
  font-style: italic;
  margin-top: -6px;
  margin-bottom: var(--space-xs);
  text-align: center;
  line-height: 1.4;
}

/* ==========================================
   Login Modal & Access Control Styles
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 37, 64, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 440px;
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: var(--space-lg) var(--space-lg) 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-slate-400);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--border-radius-sm);
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.modal-close:hover {
  color: var(--color-navy);
  background-color: var(--color-slate-100);
}

.modal-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg) var(--space-lg);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #F0F7F4;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
  margin-bottom: var(--space-xs);
  cursor: pointer;
  user-select: none;
}

.modal-title {
  font-family: var(--font-family-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.modal-desc {
  color: var(--color-slate-500);
  font-size: 0.925rem;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.login-form .form-group {
  margin-bottom: var(--space-md);
}

.login-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-slate-800);
  margin-bottom: 6px;
}

.login-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-slate-300);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  color: var(--color-navy);
  background-color: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 96, 57, 0.15);
}

.login-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: var(--space-md);
  display: none;
}

.login-alert.info {
  display: block;
  background-color: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E40AF;
}

.login-alert.success {
  display: block;
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}

.login-alert.warning {
  display: block;
  background-color: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
}

/* Admin Access Control Drawer */
.admin-drawer {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-slate-200);
  display: none;
}

.admin-drawer.open {
  display: block;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.admin-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-email-list {
  max-height: 180px;
  overflow-y: auto;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--border-radius-md);
  background-color: var(--color-slate-50);
}

.admin-email-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 0.825rem;
  border-bottom: 1px solid var(--color-slate-200);
}

.admin-email-item:last-child {
  border-bottom: none;
}

.status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
}

.status-pill.granted {
  background-color: #DCFCE7;
  color: #15803D;
}

.status-pill.pending {
  background-color: #FEF3C7;
  color: #B45309;
}

.btn-toggle-access {
  background: var(--color-white);
  border: 1px solid var(--color-slate-300);
  border-radius: var(--border-radius-sm);
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-toggle-access:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

