:root {
  --bg: #0f0f13;
  --bg-deep: #080b11;
  --panel: rgba(28, 28, 34, 0.84);
  --panel-alt: rgba(12, 15, 22, 0.74);
  --surface: rgba(17, 20, 27, 0.84);
  --border: rgba(107, 138, 153, 0.18);
  --border-strong: rgba(184, 115, 51, 0.22);
  --text: #f0ede9;
  --text-soft: #b8c7cf;
  --text-muted: #8fb0bd;
  --copper: #b87333;
  --copper-soft: #d59a65;
  --slate: #6b8a99;
  --shadow-xl: 0 36px 120px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 26px 90px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 24px 72px rgba(184, 115, 51, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 78rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

iframe {
  display: block;
  width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(107, 138, 153, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(107, 138, 153, 0.022) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  pointer-events: none;
}

.section > .container,
.site-header > .container,
.site-footer > .container,
.mobile-menu > .container {
  position: relative;
  z-index: 2;
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.78), rgba(107, 138, 153, 0.68), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 19, 0.9);
  border-bottom: 1px solid rgba(107, 138, 153, 0.1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.brand-link:hover,
.brand-link:focus-visible {
  color: var(--copper-soft);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--slate));
  transition: width 0.28s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link--active {
  color: var(--copper-soft);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link--active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cta-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cta-btn:hover,
.secondary-btn:hover,
.social-btn:hover {
  transform: translateY(-2px);
}

.cta-btn {
  color: #0f0f13;
  background: linear-gradient(90deg, var(--copper), var(--slate));
  box-shadow: 0 18px 48px rgba(184, 115, 51, 0.18);
}

.cta-btn:hover,
.cta-btn:focus-visible {
  box-shadow: 0 26px 68px rgba(184, 115, 51, 0.27);
}

.cta-btn--nav {
  min-height: 2.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 600;
}

.secondary-btn {
  color: var(--text);
  background: rgba(17, 20, 27, 0.5);
  border: 1px solid rgba(107, 138, 153, 0.26);
}

.secondary-btn:hover,
.secondary-btn:focus-visible {
  color: var(--copper-soft);
  border-color: rgba(184, 115, 51, 0.34);
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
}

.mobile-menu {
  position: fixed;
  inset: 4.6rem 0 auto;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #0f0f13 0%, #1a1a20 50%, #0a0d14 100%);
  border-bottom: 1px solid rgba(107, 138, 153, 0.12);
  z-index: 25;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 1.75rem;
}

.about-hero {
  min-height: calc(100vh - 5rem);
  background: linear-gradient(180deg, #0f0f13 0%, #11151c 44%, #0a0d14 100%);
  padding-top: 5.5rem;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(107, 138, 153, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(107, 138, 153, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.38;
  animation: gridShift 22s linear infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow--one {
  width: 64rem;
  height: 64rem;
  top: -24rem;
  right: -18rem;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.14), transparent 72%);
}

.hero-glow--two {
  width: 46rem;
  height: 46rem;
  bottom: -18rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(107, 138, 153, 0.1), transparent 70%);
}

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 34rem);
  gap: 3rem;
  align-items: start;
}

.hero-copy,
.section-copy,
.section-intro {
  max-width: 42rem;
}

.eyebrow,
.card-label,
.footer-heading {
  margin: 0 0 0.9rem;
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.18;
  margin-bottom: 0.65rem;
}

p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-subheadline {
  font-size: 1.06rem;
  max-width: 40rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-video-shell {
  position: relative;
  min-height: 100%;
}

.video-card,
.pillar-card,
.narrative-panel,
.final-cta-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--panel), var(--panel-alt));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.video-card {
  overflow: hidden;
  padding: 0.75rem 0.75rem 1rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background: #0a0d14;
  border: 1px solid rgba(107, 138, 153, 0.12);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-support {
  padding: 1rem 0.35rem 0;
}

.video-support span {
  display: block;
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.video-support strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.22;
  margin-bottom: 0.35rem;
}

.video-support p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.triple-card-grid {
  display: grid;
  gap: 1rem;
}

.pillar-card,
.narrative-panel,
.final-cta-panel {
  padding: 1.5rem;
}

.triple-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-card h3 {
  color: var(--copper-soft);
}

.narrative-panel {
  max-width: 62rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0d14 0%, #0d1118 42%, #080b11 100%);
  border-top: 1px solid rgba(184, 115, 51, 0.22);
  padding-top: 2rem;
  padding-bottom: 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(10rem, 0.7fr));
  gap: 2.5rem;
  align-items: start;
  padding-top: 2.4rem;
}

.footer-brand h2 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.footer-column {
  display: grid;
  gap: 0.8rem;
}

.footer-column a,
.footer-brand a,
.social-btn {
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-column a {
  position: relative;
  width: fit-content;
  color: var(--text);
  text-decoration: none;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--slate));
  transition: width 0.28s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--copper-soft);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  width: 100%;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  background: rgba(17, 20, 27, 0.82);
  border: 1px solid rgba(107, 138, 153, 0.18);
  color: var(--text);
}

.social-btn:hover,
.social-btn:focus-visible {
  color: var(--copper-soft);
  border-color: rgba(184, 115, 51, 0.28);
  box-shadow: 0 18px 38px rgba(184, 115, 51, 0.14);
}

.social-btn i {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(107, 138, 153, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.95s ease, transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-block .reveal:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal-block .reveal:nth-child(2) {
  transition-delay: 0.16s;
}

.reveal-block .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.reveal-block .reveal:nth-child(4) {
  transition-delay: 0.32s;
}

@keyframes gridShift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(80px, 80px);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .about-hero-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-video-shell {
    max-width: 40rem;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .cta-btn--nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .section {
    padding: 4.75rem 0;
  }

  .triple-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .button-row {
    flex-direction: column;
  }

  .cta-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-video-shell {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Shared homepage navigation */
body {
  padding-top: 4.65rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 19, 0.9);
  border-bottom: 1px solid rgba(107, 138, 153, 0.1);
}

.site-header > .container,
.mobile-menu > .container {
  width: min(calc(100% - 2rem), 78rem);
  margin: 0 auto;
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #b87333, #6b8a99, transparent);
  opacity: 0.5;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-link {
  color: #6b8a99;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  color: #f0ede9;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #d59a65;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cta-btn--nav,
#cta-mobile {
  min-height: 2.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  width: auto;
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: #f0ede9;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 4.6rem 0 auto;
  z-index: 40;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #0f0f13 0%, #1a1a20 50%, #0a0d14 100%);
  border-bottom: 1px solid rgba(107, 138, 153, 0.12);
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 1.75rem;
}

@media (max-width: 767px) {
  .desktop-nav,
  .cta-btn--nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
