:root {
  /* page background color used at the bottom of the gradient.
     You can use your oklch value or a fallback rgba */
  --page-bg: oklch(0.129 0.042 264.695);
  /* --page-bg-fallback: rgba(8,10,12,1); */
}

html {
  /* use browser default: 1rem = user's default (usually 16px) */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

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

/* override body font-size to use rems based on browser default */
body {
  margin: 0;
  font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Arial,"Apple Color Emoji","Segoe UI Emoji",sans-serif; /* or any preferred font */
  font-size: 1rem;   /* 1rem = browser default (typically 16px) */
  line-height: 1.4;
  background-color: oklch(0.129 0.042 264.695);
  color: #ffffff; /* text-white */
}

.navbar {
  background-color: oklch(0.129 0.042 264.695); /* approximate of bg-gray-950/90 */
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  margin-bottom: 0;
  position: relative;
  z-index: 40;
}

/* container that matches mx-auto, max-w-7xl, flex, h-16, items-center, justify-between, px-* */
.navbar .container {
  max-width: 80rem; /* tailwind max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem; /* h-16 */
  padding-left: 1rem;  /* px-4 */
  padding-right: 1rem;
  box-sizing: border-box;
}

/* responsive paddings: sm:px-6 (>=640px), lg:px-8 (>=1024px) */
@media (min-width: 640px) {
  .navbar .container { padding-left: 1.5rem; padding-right: 1.5rem; } /* px-6 */
}
@media (min-width: 1024px) {
  .navbar .container { padding-left: 2rem; padding-right: 2rem; } /* px-8 */
}

/* Left group: flex, items-center, gap-3 */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
}

/* logo box: h-10 w-10, overflow-hidden */
.navbar-logo-wrap {
  width: 2.5rem;  /* w-10 */
  height: 2.5rem; /* h-10 */
  overflow: hidden;
  display: inline-block;
}

/* image: object-contain, optional small top padding */
.navbar-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* title: text-lg font-semibold tracking-tight text-white */
.navbar-title {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;    /* font-semibold */
  color: #ffffff;      /* text-white */
  letter-spacing: -0.02em; /* tracking-tight approximation */
}

.navbar-link {
  text-decoration: none;              
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;               
  border: 1px solid #1e3a8a;           
  padding: 0.75rem 1.5rem;                
  font-size: 0.875rem;                  
  font-weight: 500;                     
  color: #ffffff;                       
  background-color: transparent;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  cursor: pointer;
  line-height: 1;                       
}

.navbar-link:hover, .card-button:hover {
  /* fallback solid color for very old UAs */
  background-color: rgba(20, 73, 230, 0.70);
  /* proper gradient: use background-image (or background) and correct direction syntax */
  background-image: linear-gradient(to top right, rgba(20, 73, 230, 0.70), rgba(55, 42, 172, 0.70));
}

.navbar-link:focus,
.navbar-link:focus-visible {
  outline: none;                       
  box-shadow: 0 0 0 2px #000000;      
}

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: oklch(0.129 0.042 264.695);
  margin-top: 0;
}

.hero-section .container {
  position: relative;
  height: 36rem;
  padding-top: 0;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute; 
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     
  object-position: center; 
  opacity: 0.7;         
  display: block;
  background-image: linear-gradient(to top, oklch(0.129 0.042 264.695), 10%, rgb(0, 0, 0, 0) 20%);
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(0, 0, 0, 0.4);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, oklch(0.129 0.042 264.695) 0%, rgba(0,0,0,0) 20%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  color: #ffffff; /* text-white */
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}


.hero-title {
  font-size: 3rem; /* text-4xl */
  font-weight: 700;   /* font-bold */
  margin-bottom: 0; /* mb-4 */
}

.hero-subtitle {
  font-size: 1.25rem; /* text-xl */
  font-weight: 400;   /* font-normal */
  margin-bottom: 6rem; /* mb-8 */
  max-width: 48rem;;
}

.main-title {
  font-size: 1.75rem; 
  font-weight: 400; 
  text-align: center;
  padding-top: 4rem;
  margin-top: 0;
  margin-bottom: 4rem;
}

/* Cards: layout and image stacking (decorative image beneath main icon) */
.cards-container {
  display: flex;
  gap: 7rem; /* spacing between cards */
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  max-width: 51rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.card-one,
.card-two {
  flex: 1 1 18rem; /* responsive width with wrapping */
  min-width: 8rem;
  max-height: 27rem; /* ~420px */
  display: flex;
  flex-direction: column;
  padding: 0.25rem;
  border-radius: 0.9rem;
  box-sizing: border-box;
}

.card-one { background-image: linear-gradient(to bottom right, #D53333, #373737); }
.card-two { background-image: linear-gradient(to bottom right, #334BD5, #373737); }

.card-inner {
  /* inner panel sits above the gradient border. Use --card-inner-bg to customize. */
  border-radius: 0.6rem; /* slightly smaller so outer gradient peeks around */
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--card-inner-bg, rgba(0, 0, 0, 0.9));
}

.card-image-wrap {
  position: relative;
  width: 13rem;   /* fixed box for icons */
  height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto; /* don't grow */
}

.card-icon {
  height: 11rem;
  object-fit: contain;
  position: relative;
  z-index: 2; /* sit above the decorative image */
  display: block;
}

.card-one .card-icon {
  height: 10rem;
}

.card-decorative {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 15rem;
  height: auto;
  z-index: 1; /* beneath the main icon */
  pointer-events: none;
  opacity: 0.8;
}

/* Responsive: stack cards vertically on small screens */
@media (max-width: 640px) {
  .cards-container {
    flex-direction: column;
  }
  .card-image-wrap {
    width: 4.5rem;
    height: 4.5rem;
  }
  .card-icon { width: 3.5rem; height: 3.5rem; }
  .card-decorative { width: 2.5rem; }
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto; /* grow to fill space */
  width: 100%;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.card-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #1e3b8a00;
  border: 2px solid #1e3b8a;
  border-radius: 0.7rem;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.benefits-section {
  padding: 4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10rem;
}

.benefits-container {
  width: 60rem;
  background-color: #000000dc;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-radius: 0.8rem;
}

.benefits-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.benefits-lists {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.benefits-separator {
  width: 1px;
  background-color: #1743ba;
  opacity: 0.9;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.benefits-list {
  text-align: left;
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.benefits-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-align: left;
}

.benefits-list li {
  margin-bottom: 0.5rem;
}

.footer {
  background-color: oklch(0.129 0.042 264.695);
  padding: 1rem 0;
  text-align: center;
}


