/* Reset & Base Styles */
:root {
  --primary-navy: #052461;
  --primary-orange: #f96b06;
  --text-dark: #0f1624;
  --text-gray: #525f7a;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-color: #d3d7de;
  
  --font-main: 'Inter', sans-serif;
  --font-display: 'Teko', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
  height: 100%;
  padding: 8px 0;
}

.navbar-logo {
  height: 100%;
  width: auto;
  max-height: 112px;
  display: block;
  object-fit: contain;
}

.logo span {
  color: var(--primary-orange);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hamburger {
  display: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.btn-primary {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 14px;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #031b4e;
}

/* Hero Section */
.hero {
  position: relative;
  height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 128px; /* Offset for fixed nav */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 36, 97, 0.9) 0%, rgba(5, 36, 97, 0.7) 50%, transparent 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

.badge {
  display: inline-block;
  background-color: var(--primary-orange);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 4px 16px;
  margin-bottom: 24px;
  letter-spacing: 0.7px;
}

.hero h1 {
  font-size: 96px;
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: 2.4px;
  text-shadow: 0 4px 4px rgba(0,0,0,0.15);
}

.hero h1 span {
  display: block;
  background: linear-gradient(to right, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 24px;
  font-weight: 300;
  max-width: 672px;
  margin-bottom: 40px;
  color: #ececec;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-orange {
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 18px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.btn-orange:hover {
  background-color: #e05d00;
}

.btn-orange img {
  margin-left: 8px;
}

.btn-outline-white {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 18px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

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

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.stat-item {
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-orange);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #e0e0e0;
  margin-top: 4px;
}

/* Philosophy Section */
.section-philosophy {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.33%;
  height: 100%;
  background-color: rgba(5, 36, 97, 0.03);
  z-index: -1;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-subtitle {
  color: var(--primary-orange);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2.4px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 60px;
  color: var(--primary-navy);
  margin-bottom: 32px;
  line-height: 1.1;
}

.section-title span {
  color: rgba(5, 36, 97, 0.5);
}

.quote-box {
  border-left: 4px solid var(--primary-orange);
  padding-left: 24px;
  margin-bottom: 24px;
}

.quote-text {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
}

.text-body {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.card-icon {
  background-color: rgba(5, 36, 97, 0.05);
  width: fit-content;
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.card-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.card-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Mantra Section */
.section-mantra {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mantra-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mantra-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mantra-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 36, 97, 0.6);
  mix-blend-mode: multiply;
}

.mantra-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.floating-text-box {
  background-color: rgba(5, 36, 97, 0.85);
  padding: 48px 64px;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 1s ease-out, transform 1s ease-out;
  border: 2px solid rgba(249, 107, 6, 0.3);
}

.floating-text-box.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-text-box p {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-style: normal;
}

.highlight-orange {
  color: var(--primary-orange);
  text-decoration: underline;
  text-decoration-color: var(--primary-orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Culture Section */
.section-culture {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.culture-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.culture-bg-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-content {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
}

.mantra-label {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary-orange);
  letter-spacing: 4.8px;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

.mantra-title {
  font-size: clamp(36px, 12vw, 96px);
  line-height: 1;
  margin-bottom: 48px;
}

.mantra-title span {
  color: var(--primary-orange);
  text-decoration: underline;
  text-decoration-color: var(--primary-orange);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
  text-align: left;
}

.culture-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 32px;
  border-radius: 4px;
}

.culture-card h3 {
  color: var(--primary-orange);
  font-size: 24px;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.culture-card p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.culture-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 300;
}

.culture-list li span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  margin-right: 12px;
}

/* Rituals Section */
.section-rituals {
  padding: 96px 0;
  background-color: rgba(5, 36, 97, 0.03);
}

.rituals-header {
  text-align: center;
  margin-bottom: 64px;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ritual-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  border-top-width: 4px;
  padding: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ritual-card.blue { border-top-color: var(--primary-navy); }
.ritual-card.orange { border-top-color: var(--primary-orange); }
.ritual-card.teal { border-top-color: #1fad96; }

.ritual-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ritual-card.blue .ritual-icon { background-color: rgba(5, 36, 97, 0.1); }
.ritual-card.orange .ritual-icon { background-color: rgba(249, 107, 6, 0.1); }
.ritual-card.teal .ritual-icon { background-color: rgba(31, 173, 150, 0.1); }

.ritual-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: -0.6px;
}

.ritual-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

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

.ritual-item {
  background-color: #f7f7f8; /* oklch(0.971 0.013 17.38) approx */
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #525f7a;
}

.ritual-item.strike {
  text-decoration: line-through;
  text-decoration-color: rgba(162, 54, 26, 0.5);
}

.ritual-quote {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--primary-navy);
}

.ritual-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-gray);
}

.ritual-list li span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 20px;
  line-height: 1;
}

/* Join Section */
.section-join {
  padding: 96px 0;
  text-align: center;
  background-color: var(--bg-light);
}

.join-content {
  max-width: 896px;
  margin: 0 auto;
}

.join-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.btn-large {
  height: 64px;
  padding: 0 40px;
  font-size: 18px;
}

.btn-outline-navy {
  border: 1px solid var(--primary-navy);
  color: var(--primary-navy);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 18px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

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

/* Footer */
.footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.footer-logo span {
  color: var(--primary-orange);
}

.footer-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-top: 16px;
  max-width: 384px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-person {
  margin-bottom: 16px;
}

.person-name {
  font-weight: 600;
  font-size: 18px;
}

.person-role {
  font-size: 14px;
  color: #e0e0e0;
  margin-top: 4px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e0e0e0;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: #b4b4b4;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 72px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .rituals-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { height: 80px; }
  .logo { padding: 8px 0; height: 100%; }
  .navbar-logo { height: 100%; max-height: 64px; width: auto; object-fit: contain; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.98);
    border-bottom: 2px solid var(--primary-orange);
    padding: 16px 0;
    z-index: 999;
  }
  .nav-links.open a,
  .nav-links.open button {
    padding: 14px 32px;
    font-size: 18px;
    width: 100%;
    text-align: left;
    border-radius: 0;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--primary-navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { margin-top: 80px; height: auto; min-height: 600px; }
  .hero-content { padding-top: 40px; padding-bottom: 260px; }
  .hero h1 { font-size: 48px; }
  .hero-buttons { flex-direction: column; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .floating-text-box { padding: 32px 40px; }
  .floating-text-box p { font-size: 48px; }
}
