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

@font-face {
  font-family: "Lexend Deca";
  src: local("Lexend Deca"),
       local("LexendDeca-VariableFont_wght"),
       url("LexendDeca-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Lexend Deca", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -40% -20% auto -20%;
  height: 120vh;
  background: radial-gradient(circle at 20% 20%, #05414930, transparent 45%),
              radial-gradient(circle at 80% 0%, #640b6425, transparent 40%),
              radial-gradient(circle at 50% 80%, #0b0b5c30, transparent 45%);
  filter: blur(20px);
  opacity: 0.85;
  z-index: -1;
  animation: orbShift 22s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

nav a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

nav a:hover {
  border-bottom-color: #fff;
  text-decoration: none;
}

/* Main */
main {
  flex: 1;
}

/* Hero Section */
.hero {
  padding: 5rem 5vw 4rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 4rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 700;
  animation: fadeSlideUp 0.9s ease-out 0.1s both;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 35rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0.9;
  animation: fadeSlideUp 0.9s ease-out 0.3s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-cta .btn {
  animation: pulseGlow 2.8s ease-in-out infinite;
}

/* Buttons */
.btn {
  border: 2px solid #fff;
  padding: 0.85rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: transparent;
  color: #fff;
}

.btn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* Sections */
section {
  padding: 4rem 5vw;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.section-heading {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 3rem;
  align-items: start;
}

/* Pills */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pill {
  border: 1px solid #fff;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.2s ease;
}

.pill:hover {
  background: #fff;
  color: #000;
}

/* Lists */
.list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.list-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Cards */
.card {
  border: 1px solid #fff;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  background: #fff;
  color: #000;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, #ffffff50 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.card:hover::after {
  transform: translateX(120%);
}

.card-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Contact */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.contact-item {
  font-size: 1rem;
  flex: 1;
  min-width: 250px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

/* Footer */
footer {
  padding: 3rem 5vw;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-social {
  min-width: 220px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  border: 1px solid #fff;
  padding: 0.5rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

.social-btn {
  position: relative;
  overflow: hidden;
}

.social-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #ffffff80 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.social-btn:hover::after {
  opacity: 0.5;
  transform: scale(1.2);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
  align-items: center;
  padding-top: 1rem;
  opacity: 0.8;
}

.footer-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Utilities */
.muted {
  opacity: 0.8;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 5vw;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 5vw;
  }

  .contact-block {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  header {
    padding: 1.25rem 5vw;
  }

  .hero {
    padding: 2.5rem 5vw;
  }

  .hero-kicker {
    font-size: 0.75rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }
  50% {
    box-shadow: 0 0 25px 5px rgba(255, 255, 255, 0.3);
  }
}

@keyframes orbShift {
  0% {
    transform: translate3d(-5%, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(3%, -4%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-2%, 3%, 0) scale(0.98);
  }
}
