:root {
  /* Colors */
  --tr-color-brand-navy: #292e67;
  --tr-color-brand-red: #b62e30;
  --tr-color-brand-orange: #f27830;
  --tr-color-brand-light: #f1f5f9;
  --tr-color-brand-green: #047b89;
  --tr-color-black: #000000;
  --tr-color-white: #ffffff;
  --tr-color-gray-300: #d1d5db;

  /* Fonts */
  --tr-font-sans: "Open Sans", sans-serif;
  --tr-font-serif: "Playfair Display", serif;

  /* Transitions */
  --tr-transition-duration-300: 300ms;
  --tr-transition-duration-500: 500ms;
  --tr-transition-duration-700: 700ms;
  --tr-transition-duration-800: 800ms;
  --tr-ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* Base Reset & Settings */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: var(--tr-font-sans);
  line-height: 1.5;
}

body {
  margin: 0;
  line-height: inherit;
  background-color: var(--tr-color-black);
  color: var(--tr-color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utilities */
.tr-fixed {
  position: fixed;
}

.tr-absolute {
  position: absolute;
}

.tr-relative {
  position: relative;
}

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

.tr-z-0 {
  z-index: 0;
}

.tr-z-10 {
  z-index: 10;
}

.tr-z-20 {
  z-index: 20;
}

.tr-flex {
  display: flex;
}

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

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

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

.tr-w-full {
  width: 100%;
}

.tr-h-full {
  height: 100%;
}

.tr-h-1-2 {
  height: 50%;
}

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

.tr-min-h-50vh {
  min-height: 50vh;
}

.tr-p-6 {
  padding: 1.5rem;
}

.tr-p-8 {
  padding: 2rem;
}

.tr-pt-16 {
  padding-top: 4rem;
  padding-top: 0rem;
}

.tr-px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

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

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

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

.tr-text-white {
  color: var(--tr-color-white);
}

.tr-text-brand-navy {
  color: var(--tr-color-brand-navy);
}

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

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

.tr-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.tr-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

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

.tr-font-sans {
  font-family: var(--tr-font-sans);
}

.tr-uppercase {
  text-transform: uppercase;
}

.tr-tracking-widest {
  letter-spacing: 0.1em;
}

.tr-leading-relaxed {
  line-height: 1.625;
  line-height: 1.125;
}

.tr-decoration-transparent {
  text-decoration-color: transparent;
}

.tr-overflow-hidden {
  overflow: hidden;
}

.tr-object-cover {
  object-fit: cover;
  object-fit: contain;
  object-position: 0% 29%;
}

.tr-object-contain {
  object-fit: contain;
}

.tr-opacity-80 {
  opacity: 0.8;
}

.tr-opacity-100 {
  opacity: 1;
}

.tr-rounded-sm {
  border-radius: 0.125rem;
}

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

.tr-shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tr-drop-shadow-lg {
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04))
    drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

.tr-backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Custom Backgrounds with Opacity */
.tr-bg-black-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.tr-bg-brand-navy-55 {
  background-color: rgba(41, 46, 103, 0.55);
}

.tr-bg-brand-navy-95 {
  background-color: rgba(41, 46, 103, 0.95);
}

.tr-bg-brand-light-70 {
  background-color: rgba(241, 245, 249, 0.7);
  background-color: rgba(4, 123, 137, 0.6);
}

.tr-bg-brand-light-95 {
  background-color: rgba(241, 245, 249, 0.95);
}

.tr-bg-white-5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.tr-bg-brand-navy-5 {
  background-color: rgba(41, 46, 103, 0.05);
}

/* Border Colors with Opacity */
.tr-border-white-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.tr-border-brand-navy-10 {
  border-color: rgba(41, 46, 103, 0.1);
}

/* Transitions & Transforms */
.tr-transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

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

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

.tr-duration-300 {
  transition-duration: 300ms;
}

.tr-duration-500 {
  transition-duration: 500ms;
}

.tr-duration-700 {
  transition-duration: 700ms;
}

.tr-transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* Simplified for this use case */

/* Specific Widths */
.tr-w-110 {
  width: 27.5rem;
  /* 110 * 0.25rem */
}

.tr-h-36 {
  height: 9rem;
}

.tr-h-40 {
  height: 10rem;
}

.tr-max-w-sm {
  max-width: 24rem;
}

/* Group Hover Logic */
.tr-group:hover .tr-group-hover-bg-brand-navy-95 {
  background-color: rgba(41, 46, 103, 0.95);
}

.tr-group:hover .tr-group-hover-bg-brand-light-95 {
  background-color: rgba(241, 245, 249, 0.95);
  background-color: rgba(4, 123, 137, 0.95);
}

.tr-group:hover .tr-group-hover-scale-105 {
  transform: scale(1.05);
}

.tr-group:hover .tr-group-hover-opacity-100 {
  opacity: 1;
}

.tr-group:hover .tr-group-hover-bg-brand-red {
  background-color: var(--tr-color-brand-red);
}

.tr-group:hover .tr-group-hover-text-white {
  color: var(--tr-color-white);
}

.tr-group:hover .tr-group-hover-border-brand-red {
  border-color: var(--tr-color-brand-red);
}

.tr-group:hover .tr-group-hover-bg-brand-green {
  background-color: var(--tr-color-brand-green);
}

.tr-group:hover .tr-group-hover-border-brand-green {
  border-color: var(--tr-color-brand-green);
}

.tr-group:hover .tr-group-hover-bg-brand-orange {
  background-color: var(--tr-color-brand-orange);
}
.tr-group:hover .tr-group-hover-border-brand-orange {
  border-color: var(--tr-color-brand-orange);
}

/* Custom Classes from Original HTML */
.split-section {
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Custom scrollbar hide */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.glass-btn {
  background: rgba(255, 255, 255, 0.1);
  /* Fallback */
  background: var(--tr-color-brand-red);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.glass-btn-dark {
  background: rgba(41, 46, 103, 0.05);
  /* Fallback */
  background: var(--tr-color-brand-orange);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(41, 46, 103, 0.2);
  color: var(--tr-color-white);
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.glass-btn-dark:hover {
  background: var(--tr-color-brand-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--tr-color-brand-navy);
}

/* Media Queries (md: 768px) */
@media (min-width: 768px) {
  .tr-md\:h-screen {
    height: 100vh;
  }

  .tr-md\:overflow-hidden {
    overflow: hidden;
  }

  .tr-md\:flex-row {
    flex-direction: row;
  }

  .tr-md\:h-full {
    height: 100%;
  }

  .tr-md\:w-1\/2 {
    width: 50%;
  }

  .tr-md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  /* Split Screen Hover Logic */
  .container-split:hover .split-section {
    width: 40%;
  }

  .container-split .split-section:hover {
    width: 60%;
  }

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

  .tr-leading-relaxed {
    line-height: 1.625;
  }
  .tr-pt-16 {
    padding-top: 4rem;
  }

  .tr-object-cover {
    object-fit: cover;
  }
}
