@font-face {
  font-family: "Audiowide";
  src: url("assets/Audiowide/Audiowide-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --black: #060606;
  --panel: #111111;
  --panel-alt: #161616;
  --border: #262626;
  --white: #f5f5f5;
  --grey: #9a9a9a;
  --orange: #f2762e;
  --orange-light: #f79a5b;
  --orange-dim: #8a4a22;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

h1, h2, h3, .logo-text {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Background texture: faint dot field like the logo */
body {
  background-image: radial-gradient(var(--panel) 1px, transparent 1px);
  background-size: 26px 26px;
  background-attachment: fixed;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--grey);
  transition: color 0.2s ease;
}

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

.nav-cta {
  border: 1px solid var(--orange);
  color: var(--orange) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--orange);
  color: var(--black) !important;
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 90px;
  text-align: center;
  position: relative;
}

.hero .eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--orange-dim);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  max-width: 820px;
  margin: 0 auto 22px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-image {
  margin: 64px auto 0;
  max-width: 900px;
  aspect-ratio: 16 / 7;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
}

/* ---------- Generic placeholder image ---------- */
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: var(--grey);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
}

/* ---------- Section shared ---------- */
section {
  padding: 90px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow-line {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--grey);
}

/* ---------- Card grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--orange-dim);
  transform: translateY(-3px);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(242, 118, 46, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Audiowide", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.card p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ---------- Mission / split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split .image-placeholder {
  height: 320px;
}

.split-copy .eyebrow-line {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.split-copy h2 {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.split-copy p {
  color: var(--grey);
  margin-bottom: 16px;
}

.split.reverse .image-placeholder {
  order: 2;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat h3 {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 8px;
}

.stat p {
  color: var(--grey);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: linear-gradient(180deg, var(--panel-alt), var(--black));
}

.cta-band h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--grey);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--grey);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .split, .split.reverse .image-placeholder { grid-template-columns: 1fr; order: 0; }
  .split .image-placeholder { height: 220px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 40px; }
}
