<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  /* Color palette */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #0a4b78;  /* Match React Marina design */
  --blue-800: #083a5e;  /* Match React Marina design */
  --blue-900: #0a4b78;  /* Match React Marina design */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --green-400: #4ade80;
  --green-600: #059669;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--gray-800);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Solid background for the rest of the page */
.solid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue-50);
  z-index: -1;
}

/* Video Background Styles */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px; /* Fixed height in pixels */
  overflow: hidden;
  z-index: 0;
}

/* Full width video container - default behavior */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 800px; /* Fixed height matching container */
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  border: none;
  overflow: hidden;
  object-fit: cover; /* Ensures video covers the container area */
  will-change: transform; /* Help prevent reloading during scroll */
  -webkit-transform-style: preserve-3d; /* Prevent flickering on iOS */
  -webkit-backface-visibility: hidden; /* Prevent flickering on iOS */
}

/* Desktop-only/Mobile-only visibility classes */
.desktop-only {
  display: block;
}

.mobile-video-bg {
  display: none;
  /* Default background settings for all devices */
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Mobile-specific video adjustments */
@media (max-width: 991px) {
  .hero-video-container {
    height: 800px; /* Keep fixed height for mobile */
    position: absolute; /* Not fixed, so it scrolls with content */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0; /* Ensure it stays behind content */
  }
  
  /* Hide desktop video on mobile */
  .desktop-only {
    display: none !important;
  }
  
  /* Show and style mobile background */
  .mobile-video-bg {
    display: block !important;
    background-size: cover !important; /* Cover the entire container */
    background-position: top center !important; /* Position from top to show more content */
    position: absolute; /* Not fixed, scrolls with content */
    top: 0;
    left: 0;
    width: 100%;
    height: 800px !important; /* Fixed height matching container */
    z-index: -1;
  }
  
  .hero-video {
    width: auto; /* Auto width to maintain aspect ratio */
    height: 800px; /* Fixed height */
    object-fit: cover; /* Ensure video covers area */
  }
  
  /* Ensure the hero section extends to show the full background */
  .hero-section {
    min-height: 800px; /* Match the fixed height */
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Increased opacity for better text readability on video */
  z-index: 5; /* Higher z-index to block clicks through to video */
  pointer-events: all; /* Capture all pointer events */
}

/* Darker overlay for mobile for better text contrast */
@media (max-width: 767px) {
  .video-overlay {
    background: rgba(0, 0, 0, 0.5); /* Darker overlay for mobile for better text contrast */
    position: absolute; /* Not fixed, scrolls with content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Full height of container */
    z-index: 0; /* Above background but below content */
  }
}

/* Header Styles */
header {
  position: relative;
  z-index: 10;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  z-index: 2;
  padding-top: 0.5rem;
  min-height: 60vh;
  margin-bottom: 2rem;
}

/* For mobile hero with fixed height */
@media (max-width: 991px) {
  .hero-section {
    min-height: 800px; /* Match the fixed height of the video container */
    margin-bottom: 0;
    padding-bottom: 2rem;
    position: relative; /* For proper positioning of background */
    overflow: hidden; /* Keep background contained */
  }
  
  /* Add spacing after hero for content */
  .hero-section + section {
    margin-top: 2rem;
    position: relative; /* Ensure it's above the background */
    z-index: 2;
  }
}

/* No need for video end marker with fixed height */

.right-side-content {
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero content styling */

/* Remove shadow from content wrapper */
.text-content-wrapper {
  box-shadow: none;
}

/* Add text shadow to make headings more visible */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Add shadow to all text in hero content for better visibility */
.hero-content h2,
.hero-content h3,
.hero-content p,
.hero-content span,
.hero-content li,
.hero-content ul {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

/* Utility classes */
.flex {
  display: flex;
}

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

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

.flex-grow {
  flex-grow: 1;
}

/* Partners section visibility fix */
.partners-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10;
  position: relative;
}

/* Static partners grid */
.static-partners-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-top: 1rem !important;
  width: 100% !important;
}

/* Responsive adjustments for partners grid */
@media (max-width: 768px) {
  .static-partners-grid {
    gap: 10px !important;
  }
  
  .static-partners-grid &gt; div {
    width: 100px !important;
    height: 50px !important;
  }
  
  .static-partners-grid img {
    max-height: 40px !important;
  }
}

@media (max-width: 480px) {
  .static-partners-grid {
    gap: 8px !important;
  }
  
  .static-partners-grid &gt; div {
    width: 80px !important;
    height: 40px !important;
  }
  
  .static-partners-grid img {
    max-height: 35px !important;
  }
}

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

.items-start {
  align-items: flex-start;
}

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

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

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

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

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

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

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

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

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

.mb-12 {
  margin-bottom: 3rem;
}

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

.p-1 {
  padding: 0.25rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

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

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

.rounded-b-lg {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

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

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

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

.italic {
  font-style: italic;
}

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

.text-white {
  color: white;
}

.text-blue-100 {
  color: var(--blue-100);
}

.text-blue-200 {
  color: #bfdbfe;
}

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

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

.text-blue-900 {
  color: var(--blue-900);
}

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

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

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

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

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

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

.bg-gray-50 {
  background-color: var(--gray-50);
}

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

.bg-blue-50 {
  background-color: var(--blue-50);
}

.bg-blue-100 {
  background-color: var(--blue-100);
}

.bg-blue-700 {
  background-color: var(--blue-700);
}

.bg-blue-800 {
  background-color: var(--blue-800);
}

.bg-blue-900 {
  background-color: var(--blue-900);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-blue-50 {
  --tw-gradient-from: var(--blue-50);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-white {
  --tw-gradient-to: #fff;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-blue-600 {
  border-color: var(--blue-600);
}

.border-blue-800 {
  border-color: var(--blue-800);
}

.border-blue-900 {
  border-color: var(--blue-900);
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.w-4 {
  width: 1rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-16 {
  width: 4rem;
}

.w-full {
  width: 100%;
}

.h-4 {
  height: 1rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-full {
  height: 100%;
}

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

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.space-y-2 &gt; * + * {
  margin-top: 0.5rem;
}

.divide-y &gt; * + * {
  border-top-width: 1px;
}

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

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.fill-current {
  fill: currentColor;
}

.hover\:text-white:hover {
  color: white;
}

/* Responsive layout */
/* Small devices (phones) */
@media (max-width: 991px) {
  /* Prevent horizontal scrolling on mobile */
  html, body {
    max-width: 100vw;
    width: 100vw;
    overflow-x: hidden;
  }
  
  .min-h-screen {
    width: 100vw;
    overflow-x: hidden;
  }
  
  main, section, div {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Adjust spacing for mobile */
  .p-4 {
    padding: 0.75rem;
  }
  
  /* Adjust font sizes for mobile */
  .text-lg {
    font-size: 1rem;
  }
  
  /* Make sure text doesn't overflow on mobile */
  .text-gray-700 {
    word-break: break-word;
  }
  
  .text-3xl {
    font-size: 1.5rem;
  }
  
  .p-6 {
    padding: 1rem;
    padding-top: 0.25rem;
  }
  
  .header-button {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .mb-12 {
    margin-bottom: 2rem;
  }
  
  header .flex.items-center.justify-between {
    flex-direction: column;
    gap: 1rem;
  }
  
  header .flex.items-center.gap-3 {
    width: 100%;
    justify-content: center;
  }
  
  /* Adjust logo text size for mobile */
  .marina-text h1 {
    font-size: 1.5rem !important;
  }
  
  .features-title {
    font-size: 1.25rem;
  }
  
  /* Adjust grid for mobile */
  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3,
  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Improve footer spacing on mobile */
  footer .mb-2 {
    margin-bottom: 1rem;
  }
  
  /* Fix grid alignment issues */
  .grid {
    width: 100%;
  }
  
  /* Make testimonials more readable */
  blockquote.italic.text-gray-700.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  /* Hero section improvements for mobile */
  .hero-section {
    padding-top: 0.25rem;
    min-height: auto;
    margin-bottom: 1rem;
    width: 100%;
  }
  
  /* Enhance text readability in hero section on mobile */
  .hero-content h2,
  .hero-content h3,
  .hero-content p,
  .hero-content span,
  .hero-content li {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  }
  
  /* Adjust hero content padding for mobile */
  .text-content-wrapper {
    padding: 0.5rem !important;
    padding-top: 0 !important;
  }
  
  /* Make background completely transparent for hero content on mobile */
  .hero-content .text-content-wrapper {
    background-color: transparent !important;
    border-radius: 0.5rem;
    box-shadow: none !important;
  }
  
  /* Ensure container widths are properly constrained */
  .max-w-6xl, .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Fix padding for consistent margins */
  .px-4, div[class*="px-"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box;
  }
  
  /* Fix margins for consistent spacing */
  .mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Fix iOS safari bounce scroll effect */
  .no-bounce {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .md\:w-1\/2 {
    width: 50%;
  }
  
  .md\:mb-0 {
    margin-bottom: 0;
  }
  
  .md\:text-right {
    text-align: right;
  }
  
  .md\:border-r {
    border-right-width: 1px;
  }
  
  .md\:border-b-0 {
    border-bottom-width: 0;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:border-r-0 {
    border-right-width: 0;
  }
  
  .lg\:border-b {
    border-bottom-width: 1px;
  }
  
  .lg\:border-r {
    border-right-width: 1px;
  }
  
  .lg\:border-b-0 {
    border-bottom-width: 0;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
}

.fadeIn-delay-1 {
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.fadeIn-delay-2 {
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

/* Video Modal Styles */
.video-modal {
  animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Button Styles */
.rounded-md {
  border-radius: 0.375rem;
}

.inline-flex {
  display: inline-flex;
}

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

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

.mr-2 {
  margin-right: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--blue-500, rgba(37, 99, 235, 0.5));
}

.focus\:ring-blue-500:focus {
  --blue-500: rgba(37, 99, 235, 0.5);
}

.focus\:ring-opacity-50:focus {
  --tw-ring-opacity: 0.5;
}

.hover\:bg-blue-50:hover {
  background-color: var(--blue-50);
}

.hover\:bg-blue-700:hover {
  background-color: var(--blue-700);
}

.hover\:border-blue-300:hover {
  border-color: #93c5fd;
}

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

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

/* Enhanced button styles */
.header-button {
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 0.5rem;
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.no-underline {
  text-decoration: none;
}

.header-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.header-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-button-white {
  background-color: white;
  color: var(--blue-700);
  border: 1px solid white;
}

.header-button-white:hover {
  background-color: var(--blue-50);
  border-color: var(--blue-50);
}

.header-button-transparent {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.header-button-transparent:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Partners Styles */
/* All partners styling is now controlled by the static-partners-grid class */</pre></body></html>