@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Space+Grotesk:wght@700&display=swap');

:root {
  --navy: #0d1b2a;
  --slate: #1b263b;
  --offwhite: #e0e1dd;
  --neon: #41c9e2;
  --radius: 18px;
  --shadow: 0 8px 32px rgba(13,27,42,0.18);
}

html, body {
  background: var(--navy);
  color: var(--offwhite);
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 2rem 1rem 2rem;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo {
  height: 200px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
nav a {
  color: var(--neon);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  font-family: 'Space Grotesk', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--neon);
}

.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  position: relative;
  text-align: center;
  padding: 2rem 1rem 3rem 1rem;
}
.hero::after {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 2.8rem;
  color: var(--neon);
  margin: 0 0 0.5rem 0;
  letter-spacing: -1px;
  text-shadow: 0 2px 24px #41c9e2cc;
}
.hero p {
  font-size: 1.3rem;
  color: var(--offwhite);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  background: var(--neon);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 1rem 2.2rem;
  font-size: 1.2rem;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 16px #41c9e2aa;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #fff;
  color: var(--neon);
  box-shadow: 0 4px 32px #41c9e2cc;
}

section {
  padding: 2rem 1rem 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

section:first-of-type {
  padding-top: 1rem;
}
.section-title {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 2rem;
  color: var(--neon);
  margin-bottom: 2rem;
  text-align: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.card {
  background: rgba(27,38,59,0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  color: var(--offwhite);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(6px);
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 40px #41c9e2cc;
}
.card .card-title {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--neon);
  margin-bottom: 0.5rem;
}
.card .card-metrics {
  font-size: 1.1rem;
  color: #41c9e2;
  margin-bottom: 0.5rem;
}
.card .card-desc {
  font-size: 1rem;
  color: var(--offwhite);
  margin-bottom: 0.5rem;
}

.timeline {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.timeline .metric {
  background: #1b263b;
  color: var(--neon);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-family: 'Space Grotesk', Arial, sans-serif;
  box-shadow: 0 2px 12px #41c9e2aa;
  margin: 0 0.5rem;
}

.process {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin: 2rem 0;
}
.process-step {
  background: #1b263b;
  color: var(--offwhite);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  flex: 1;
  box-shadow: 0 2px 12px #41c9e2aa;
  margin: 0 0.5rem;
  position: relative;
}
.process-step .step-title {
  color: var(--neon);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-form {
  background: rgba(27,38,59,0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  background: #0d1b2a;
  color: var(--offwhite);
  border: 1px solid #41c9e2;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  transition: border 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #fff;
  outline: none;
}
.contact-form button {
  background: var(--neon);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 16px #41c9e2aa;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: #fff;
  color: var(--neon);
  box-shadow: 0 4px 32px #41c9e2cc;
}

.footer {
  background: #1b263b;
  color: #e0e1ddcc;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1rem;
  margin-top: 3rem;
}
.footer a {
  color: var(--neon);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.2s;
}
.footer a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .cards, .process {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 1.5rem;
  }
  .timeline {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
}

/* --- About Us --- */
.about-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(27,38,59,0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.about-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #222;
  display: inline-block;
  box-shadow: 0 2px 16px #41c9e2aa;
}
.about-summary {
  flex: 1;
  min-width: 220px;
}
.about-headline {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--neon);
  margin-bottom: 0.5rem;
}
.about-punch {
  font-size: 1.1rem;
  color: var(--offwhite);
  margin-bottom: 1rem;
}
.about-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.badge {
  background: #1b263b;
  color: var(--neon);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-family: 'Space Grotesk', Arial, sans-serif;
  box-shadow: 0 2px 8px #41c9e244;
  margin-bottom: 0.5rem;
}

/* --- Offerings Visual Flow --- */
.offerings-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.offering-card {
  background: rgba(27,38,59,0.95);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px #41c9e222;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  max-width: 700px;
  width: 100%;
}
.offering-title {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--neon);
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.offering-flow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: nowrap;
  justify-content: center;
  min-width: 600px;
}
.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.flow-label {
  font-size: 0.95rem;
  color: var(--offwhite);
  margin-top: 0.2rem;
  text-align: center;
}
.flow-desc {
  color: #41c9e2;
  font-size: 0.85rem;
}
.flow-arrow {
  font-size: 2rem;
  color: #41c9e2;
  margin: 0 0.2rem;
  font-weight: bold;
}
.flow-ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  background: rgba(65,201,226,0.10);
  border-radius: 12px;
  box-shadow: 0 0 16px #41c9e2aa;
  padding: 0.2rem 0.5rem 0.5rem 0.5rem;
  margin: 0 0.2rem;
}
.offering-desc {
  font-size: 1rem;
  color: #e0e1ddcc;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .offerings-grid {
    gap: 1.5rem;
  }
  .offering-card {
    max-width: 98vw;
  }
  .offering-flow {
    min-width: 0;
    flex-wrap: wrap;
  }
}

/* Splash Screen Animation */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease-in-out;
}

#splash-logo {
  width: 80vw;
  max-width: 400px;
  height: auto;
  position: absolute;
  transition: width 1s ease-in-out, height 1s ease-in-out, top 1s ease-in-out, left 1s ease-in-out;
}

#header-logo {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
} 