/* =========================================================
   B3AST SYSTEMS
   Main Website Stylesheet
   ========================================================= */


/* =========================================================
   DESIGN SYSTEM
   Reusable colors, sizing, and animation values
   ========================================================= */

:root {
  --bg: #050607;
  --bg-deep: #030405;

  --surface: #0b0d0f;
  --surface-light: #111417;

  --text: #f5f5f7;
  --text-muted: #a0a3a8;

  --crimson: #ef233c;
  --crimson-dark: #c91e34;

  --cyan: #00bde3;

  --border: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.22);

  --max-width: 1200px;

  --radius-sm: 10px;
  --radius-md: 14px;

  --transition: 200ms ease;
}


/* =========================================================
   RESET
   Removes default browser spacing
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
}

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

button {
  font: inherit;
}


/* =========================================================
   FIXED NAVIGATION
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;

  background: rgba(5, 6, 7, 0.82);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid var(--border);
}


.nav-container {
  width: 100%;
  max-width: var(--max-width);

  height: 72px;

  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   B3AST LOGO
   ========================================================= */

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}


.logo img {
  display: block;

  width: auto;
  height: 71px;

  object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 38px;
}


.desktop-nav a {
  color: var(--text-muted);

  font-size: 0.95rem;
  font-weight: 500;

  transition: color var(--transition);
}


.desktop-nav a:hover {
  color: var(--text);
}


/* =========================================================
   NAVIGATION CTA
   ========================================================= */

.nav-cta {
  padding: 10px 18px;

  border: 1px solid var(--border);
  border-radius: var(--radius-sm);

  background: rgba(255, 255, 255, 0.02);

  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}


.nav-cta:hover {
  background: rgba(239, 35, 60, 0.08);

  border-color: rgba(239, 35, 60, 0.55);

  transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
   Currently visual only.
   JavaScript comes later.
   ========================================================= */

.menu-button {
  display: none;

  width: 36px;
  height: 36px;

  background: none;
  border: none;

  cursor: pointer;
}


.menu-button span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  background: var(--text);

  transition:
    transform var(--transition),
    opacity var(--transition);
}


.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-nav {
  display: none;

  position: absolute;

  top: 100%;
  left: 0;

  width: 100%;

  padding: 14px 24px 24px;

  flex-direction: column;

  background: rgba(5, 6, 7, 0.97);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid var(--border);
}


.mobile-nav a {
  padding: 16px 4px;

  color: var(--text-muted);

  font-size: 1rem;
  font-weight: 500;

  border-bottom: 1px solid var(--border);

  transition:
    color var(--transition),
    background var(--transition);
}


.mobile-nav a:hover {
  color: var(--text);
}


.mobile-nav .mobile-nav-cta {
  margin-top: 14px;

  padding: 14px 18px;

  text-align: center;

  color: white;

  background: var(--crimson);

  border: 1px solid var(--crimson);
  border-radius: var(--radius-sm);
}


.mobile-nav .mobile-nav-cta:hover {
  color: white;

  background: var(--crimson-dark);
}


.mobile-nav.is-open {
  display: flex;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 88vh;

  padding: 140px 24px 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}


/* Cyan glow */

.hero::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  top: 20%;
  left: -300px;

  background:
    radial-gradient(
      circle,
      rgba(0, 189, 227, 0.07),
      transparent 65%
    );

  pointer-events: none;
}


/* Crimson glow */

.hero::after {
  content: "";

  position: absolute;

  width: 750px;
  height: 750px;

  top: 15%;
  right: -300px;

  background:
    radial-gradient(
      circle,
      rgba(239, 35, 60, 0.12),
      transparent 65%
    );

  pointer-events: none;
}


/* Soft background depth */

.hero-background {
  position: absolute;

  width: 120%;
  height: 500px;

  bottom: -100px;

  opacity: 0.12;

  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.05),
      transparent 65%
    );

  transform: rotate(-4deg);

  pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
  position: relative;

  width: 100%;
  max-width: 950px;

  text-align: center;

  z-index: 2;
}


.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);

  line-height: 0.95;
  letter-spacing: -0.045em;

  font-weight: 750;
}


.red {
  color: var(--crimson);
}


.cyan {
  color: var(--cyan);
}


.hero p {
  max-width: 650px;

  margin: 28px auto 0;

  color: var(--text-muted);

  font-size: 1.15rem;
  line-height: 1.65;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
  margin-top: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;
}


.button {
  min-width: 180px;

  padding: 14px 22px;

  border-radius: var(--radius-sm);

  font-weight: 600;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}


.button:hover {
  transform: translateY(-2px);
}


/* Primary */

.button-primary {
  background: var(--crimson);

  border: 1px solid var(--crimson);

  color: white;
}


.button-primary:hover {
  background: var(--crimson-dark);

  border-color: var(--crimson-dark);
}


.button-primary span {
  margin-left: 14px;

  color: white;
}


/* Secondary */

.button-secondary {
  background: rgba(255, 255, 255, 0.025);

  border: 1px solid var(--border);
}


.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);

  border-color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   ANCHOR OFFSET

   Stops the fixed navbar from covering section titles
   when clicking Services / Projects / About / Contact
   ========================================================= */

#services,
#projects,
#about,
#contact {
  scroll-margin-top: 90px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  padding: 95px 24px 110px;

  background:
    linear-gradient(
      180deg,
      #050607 0%,
      #08090b 100%
    );

  border-top: 1px solid var(--border);
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
  width: 100%;
  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;
}


.section-heading span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.section-heading h2 {
  margin-top: 12px;

  font-size: clamp(2rem, 4vw, 3.5rem);

  letter-spacing: -0.035em;
}


.section-heading p {
  margin-top: 18px;

  color: var(--text-muted);

  font-size: 1.05rem;
  line-height: 1.65;
}


/* =========================================================
   SERVICES GRID
   ========================================================= */

.services-grid {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
  position: relative;

  min-height: 210px;
  min-width: 0;

  padding: 26px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}


.service-card:hover {
  transform: translateY(-5px);

  border-color: var(--border-hover);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.015)
    );
}


/* Small top accent */

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 45px;
  height: 2px;

  background: var(--crimson);
}


.service-card:nth-child(even)::before {
  background: var(--cyan);
}


/* =========================================================
   SERVICE ICONS
   ========================================================= */

.service-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.7rem;
}


.red-icon {
  color: var(--crimson);
}


.cyan-icon {
  color: var(--cyan);
}


/* =========================================================
   SERVICE TEXT
   ========================================================= */

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 650;
}


.service-card p {
  margin-top: 12px;

  color: var(--text-muted);

  line-height: 1.65;
}


.service-card a {
  margin-top: auto;
  padding-top: 24px;

  color: var(--text);

  font-size: 0.95rem;
  font-weight: 600;

  transition:
    color var(--transition),
    transform var(--transition);
}


.service-card a:hover {
  color: var(--crimson);

  transform: translateX(4px);
}


.service-card:nth-child(even) a:hover {
  color: var(--cyan);
}


/* =========================================================
   FEATURED PROJECTS
   ========================================================= */

.projects-section {
  padding: 110px 24px 130px;

  background:
    linear-gradient(
      180deg,
      #08090b 0%,
      #050607 100%
    );

  border-top: 1px solid var(--border);
}


.projects-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


/* =========================================================
   PROJECTS HEADING
   ========================================================= */

.projects-heading {
  width: 100%;
  max-width: 650px;

  margin-bottom: 55px;
}


.projects-heading span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.projects-heading h2 {
  margin-top: 12px;

  font-size: clamp(2.4rem, 5vw, 4.5rem);

  line-height: 1;
  letter-spacing: -0.045em;
}


.projects-heading p {
  max-width: 520px;

  margin-top: 20px;

  color: var(--text-muted);

  font-size: 1.05rem;
  line-height: 1.65;
}


/* =========================================================
   PROJECT GRID
   ========================================================= */

.projects-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 20px;
}


/* =========================================================
   PROJECT CARDS
   ========================================================= */

.project-card {
  position: relative;

  width: 100%;
  min-width: 0;
  min-height: 420px;

  padding: 36px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  transition:
    transform var(--transition),
    border-color var(--transition);
}


.project-card:hover {
  transform: translateY(-5px);

  border-color: rgba(255, 255, 255, 0.24);
}


/* =========================================================
   K.I.R.I.T.O.S.
   ========================================================= */

.project-kiritos {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 189, 227, 0.12),
      transparent 45%
    ),

    linear-gradient(
      145deg,
      #0b0d10,
      #060708
    );
}


.project-kiritos::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 70px;
  height: 2px;

  background: var(--cyan);
}


/* =========================================================
   FORGE
   ========================================================= */

.project-forge {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(239, 35, 60, 0.14),
      transparent 45%
    ),

    linear-gradient(
      145deg,
      #0c090a,
      #060708
    );
}


.project-forge::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 70px;
  height: 2px;

  background: var(--crimson);
}


/* =========================================================
   PROJECT CONTENT
   ========================================================= */

.project-content {
  position: relative;

  width: 100%;
  min-width: 0;
  max-width: 620px;

  z-index: 2;
}


.project-label {
  display: inline-block;

  margin-bottom: 6px;

  color: var(--text-muted);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.project-card p {
  margin-top: 0;

  color: var(--text-muted);

  line-height: 1.65;
}


.project-card a {
  display: inline-block;

  margin-top: 24px;

  color: var(--text);

  font-weight: 600;

  transition:
    color var(--transition),
    transform var(--transition);
}


/* KIRITOS link */

.project-kiritos a:hover {
  color: var(--cyan);

  transform: translateX(4px);
}


/* FORGE link */

.project-forge a:hover {
  color: var(--crimson);

  transform: translateX(4px);
}


/* =========================================================
   PROJECT LOGOS
   ========================================================= */

.project-logo-wrap {
  margin-top: 8px;
  margin-bottom: 14px;
}


.project-logo {
  display: block;

  width: 100%;
  max-width: 330px;
  height: auto;

  object-fit: contain;
}


/* KIRITOS */

.kiritos-logo {
  filter:
    drop-shadow(
      0 0 10px rgba(0, 189, 227, 0.08)
    );
}


/* FORGE */

.forge-logo {
  max-width: 330px;

  filter:
    drop-shadow(
      0 0 10px rgba(239, 35, 60, 0.10)
    );
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .services-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 900px) {

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

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  /* Navigation */

  .nav-container {
    height: 64px;
  }


  .logo img {
    height: 50px;
  }


  .desktop-nav,
  .nav-cta {
    display: none;
  }


  .menu-button {
    display: block;
  }


  .mobile-nav {
  display: none;
}

.mobile-nav.is-open {
  display: flex;
}


  /* Hero */

  .hero {
    min-height: auto;

    padding: 130px 22px 85px;
  }


  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }


  .hero p {
    font-size: 1rem;
  }


  .hero-actions {
    width: 100%;

    flex-direction: column;
  }


  .button {
    width: 100%;
    max-width: 360px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

  /* Services */

  .services-section {
    padding: 80px 20px 90px;
  }


  .section-heading {
    margin-bottom: 40px;
  }


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


  .service-card {
    min-height: 220px;
  }


  /* Projects */

  .projects-section {
    padding: 80px 20px 90px;
  }


  .projects-heading {
    margin-bottom: 40px;
  }


  .project-card {
    min-height: 360px;

    padding: 28px;
  }


  .project-logo {
    max-width: 240px;
  }


  .forge-logo {
    max-width: 240px;
  }

}

/* =========================================================
   ABOUT B3AST SYSTEMS
   ========================================================= */

.about-section {
  padding: 110px 24px 120px;

  background:
    linear-gradient(
      180deg,
      #050607 0%,
      #07090b 100%
    );

  border-top: 1px solid var(--border);
}


.about-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


/* =========================================================
   ABOUT INTRO
   ========================================================= */

.about-intro {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: 70px;

  align-items: end;

  margin-bottom: 65px;
}


/* =========================================================
   ABOUT HEADING
   ========================================================= */

.about-heading span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.about-heading h2 {
  margin-top: 12px;

  font-size: clamp(
    2.5rem,
    5vw,
    4.8rem
  );

  line-height: 0.95;
  letter-spacing: -0.045em;
}


/* =========================================================
   ABOUT COPY
   ========================================================= */

.about-copy {
  max-width: 650px;
}


.about-copy p {
  color: var(--text-muted);

  font-size: 1.1rem;
  line-height: 1.75;
}


.about-copy p + p {
  margin-top: 20px;
}


/* =========================================================
   VALUES GRID
   ========================================================= */

.values-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}


/* =========================================================
   VALUE CARD
   ========================================================= */

.value-card {
  min-height: 220px;

  padding: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.008)
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}


.value-card:hover {
  transform: translateY(-4px);

  border-color: var(--border-hover);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );
}


/* =========================================================
   VALUE ICONS
   ========================================================= */

.value-icon {
  width: 44px;
  height: 44px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem;
}


.red-value {
  color: var(--crimson);
}


.cyan-value {
  color: var(--cyan);
}


/* =========================================================
   VALUE TEXT
   ========================================================= */

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 650;
}


.value-card p {
  margin-top: 12px;

  color: var(--text-muted);

  line-height: 1.65;
}


/* =========================================================
   ABOUT TABLET
   ========================================================= */

@media (max-width: 900px) {

  .about-intro {
    grid-template-columns: 1fr;

    gap: 35px;
  }

}


/* =========================================================
   ABOUT MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .about-section {
    padding: 80px 20px 90px;
  }


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


  .about-intro {
    margin-bottom: 45px;
  }


  .value-card {
    min-height: auto;
  }

}


/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-page-hero {
  padding: 160px 24px 90px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(239, 35, 60, 0.10),
      transparent 40%
    ),

    radial-gradient(
      circle at 10% 70%,
      rgba(0, 189, 227, 0.07),
      transparent 45%
    ),

    linear-gradient(
      180deg,
      #050607 0%,
      #08090b 100%
    );

  border-bottom: 1px solid var(--border);
}


.services-page-hero-content {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


.services-page-hero-content > span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.services-page-hero-content h1 {
  max-width: 900px;

  margin-top: 14px;

  font-size: clamp(
    3rem,
    7vw,
    6rem
  );

  line-height: 0.95;
  letter-spacing: -0.045em;
}


.services-page-hero-content p {
  max-width: 650px;

  margin-top: 24px;

  color: var(--text-muted);

  font-size: 1.1rem;
  line-height: 1.7;
}


/* =========================================================
   SERVICES DETAIL SECTION
   ========================================================= */

.services-detail-section {
  padding: 50px 24px 120px;

  background:
    linear-gradient(
      180deg,
      #08090b 0%,
      #050607 100%
    );
}


.services-detail-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  display: flex;
  flex-direction: column;

  gap: 22px;
}


/* =========================================================
   SERVICE DETAIL CARD
   ========================================================= */

.service-detail-card {
  position: relative;

  padding: 42px;

  display: grid;

  grid-template-columns:
    100px
    minmax(0, 1fr);

  gap: 30px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}


.service-detail-card:hover {
  transform: translateY(-4px);

  border-color: var(--border-hover);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );
}


.service-detail-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 80px;
  height: 2px;

  background: var(--crimson);
}


.service-detail-card:nth-child(even)::before {
  background: var(--cyan);
}


/* =========================================================
   SERVICE NUMBER
   ========================================================= */

.service-detail-number {
  color: rgba(255, 255, 255, 0.10);

  font-size: 3rem;
  font-weight: 750;

  line-height: 1;
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.service-detail-label {
  color: var(--cyan);

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.service-detail-card:nth-child(odd)
.service-detail-label {
  color: var(--crimson);
}


.service-detail-card h2 {
  margin-top: 10px;

  font-size: clamp(
    2rem,
    4vw,
    3.5rem
  );

  letter-spacing: -0.035em;
}


.service-detail-card p {
  max-width: 700px;

  margin-top: 16px;

  color: var(--text-muted);

  font-size: 1.05rem;
  line-height: 1.7;
}


.service-detail-card .button {
  display: inline-block;

  width: auto;

  margin-top: 26px;
}


/* =========================================================
   SERVICES PAGE MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .services-page-hero {
    padding:
      130px
      20px
      75px;
  }


  .services-detail-section {
    padding:
      34px
      20px
      90px;
  }


  .service-detail-card {
    grid-template-columns: 1fr;

    gap: 18px;

    padding: 30px 26px;
  }


  .service-detail-number {
    font-size: 2.2rem;
  }

}


/* =========================================================
   K.I.R.I.T.O.S. PROJECT PAGE
   ========================================================= */


/* =========================================================
   PROJECT PAGE HERO
   ========================================================= */

.project-page-hero {
  padding: 155px 24px 100px;

  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(0, 189, 227, 0.10),
      transparent 40%
    ),

    radial-gradient(
      circle at 85% 20%,
      rgba(239, 35, 60, 0.05),
      transparent 40%
    ),

    linear-gradient(
      180deg,
      #050607 0%,
      #080a0c 100%
    );

  border-bottom: 1px solid var(--border);
}


.project-page-hero-content {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


.project-page-eyebrow {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.project-page-logo {
  display: block;

  width: 100%;
  max-width: 420px;

  margin-top: 26px;
  margin-bottom: 28px;

  filter:
    drop-shadow(
      0 0 18px rgba(0, 189, 227, 0.12)
    );
}


.project-page-hero h1 {
  max-width: 900px;

  font-size: clamp(
    3rem,
    7vw,
    6rem
  );

  line-height: 0.95;
  letter-spacing: -0.045em;
}


.project-page-hero p {
  max-width: 700px;

  margin-top: 24px;

  color: var(--text-muted);

  font-size: 1.1rem;
  line-height: 1.7;
}


.project-page-actions {
  margin-top: 32px;

  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}


/* =========================================================
   PROJECT OVERVIEW
   ========================================================= */

.project-overview-section {
  padding: 85px 24px;

  background: #07090b;
}


.project-overview-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  gap: 70px;

  align-items: start;
}


.project-overview-heading span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.project-overview-heading h2 {
  margin-top: 12px;

  font-size: clamp(
    2.5rem,
    5vw,
    4.5rem
  );

  line-height: 1;
  letter-spacing: -0.04em;
}


.project-overview-copy p {
  color: var(--text-muted);

  font-size: 1.08rem;
  line-height: 1.75;
}


.project-overview-copy p + p {
  margin-top: 20px;
}


/* =========================================================
   CORE CAPABILITIES
   ========================================================= */

.project-capabilities-section {
  padding: 105px 24px 120px;

  background:
    linear-gradient(
      180deg,
      #07090b 0%,
      #050607 100%
    );

  border-top: 1px solid var(--border);
}


.project-capabilities-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


.project-section-heading {
  max-width: 700px;

  margin-bottom: 55px;
}


.project-section-heading span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.project-section-heading h2 {
  margin-top: 12px;

  font-size: clamp(
    2.4rem,
    5vw,
    4.5rem
  );

  line-height: 1;
  letter-spacing: -0.04em;
}


.project-section-heading p {
  margin-top: 18px;

  color: var(--text-muted);

  font-size: 1.05rem;
  line-height: 1.7;
}


.project-capabilities-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}


.project-capability-card {
  min-height: 260px;

  padding: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}


.project-capability-card:hover {
  transform: translateY(-4px);

  border-color: rgba(0, 189, 227, 0.35);

  background:
    linear-gradient(
      145deg,
      rgba(0, 189, 227, 0.025),
      rgba(255, 255, 255, 0.01)
    );
}


.capability-number {
  color: rgba(0, 189, 227, 0.25);

  font-size: 2rem;
  font-weight: 750;
}


.project-capability-card h3 {
  margin-top: 30px;

  font-size: 1.35rem;
}


.project-capability-card p {
  margin-top: 14px;

  color: var(--text-muted);

  line-height: 1.7;
}


/* =========================================================
   CURRENT DEVELOPMENT
   ========================================================= */

.project-status-section {
  padding: 110px 24px;

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(0, 189, 227, 0.06),
      transparent 35%
    ),

    #050607;

  border-top: 1px solid var(--border);
}


.project-status-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.9fr);

  gap: 70px;

  align-items: center;
}


.project-status-copy > span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.project-status-copy h2 {
  margin-top: 12px;

  font-size: clamp(
    2.5rem,
    5vw,
    4.5rem
  );

  line-height: 1;
  letter-spacing: -0.04em;
}


.project-status-copy p {
  max-width: 650px;

  margin-top: 20px;

  color: var(--text-muted);

  line-height: 1.75;
}


.project-status-panel {
  padding: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.008)
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}


.status-row {
  padding: 18px 0;

  display: flex;
  justify-content: space-between;

  gap: 25px;

  border-bottom: 1px solid var(--border);
}


.status-row:last-child {
  border-bottom: none;
}


.status-row span {
  color: var(--text-muted);
}


.status-row strong {
  color: var(--cyan);

  font-size: 0.9rem;
  font-weight: 650;

  text-align: right;
}


/* =========================================================
   FUTURE DIRECTION
   ========================================================= */

.project-future-section {
  padding: 85px 24px;

  background:
    linear-gradient(
      180deg,
      #050607 0%,
      #07090b 100%
    );

  border-top: 1px solid var(--border);
}


.project-future-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


.project-future-wrapper > div {
  max-width: 850px;
}


.project-future-wrapper span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.project-future-wrapper h2 {
  margin-top: 12px;

  font-size: clamp(
    2.5rem,
    5vw,
    4.5rem
  );

  line-height: 1;
  letter-spacing: -0.04em;
}


.project-future-wrapper p {
  margin-top: 20px;

  color: var(--text-muted);

  font-size: 1.08rem;
  line-height: 1.75;
}


/* =========================================================
   PROJECT CTA
   ========================================================= */

.project-page-cta {
  padding: 75px 24px 85px;

  background: #050607;

  border-top: 1px solid var(--border);
}


.project-page-cta-card {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 42px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(0, 0.8fr);

  gap: 60px;

  align-items: center;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 189, 227, 0.10),
      transparent 45%
    ),

    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.008)
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}


.project-page-cta-card span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.project-page-cta-card h2 {
  margin-top: 12px;

  font-size: clamp(
    2.5rem,
    5vw,
    4rem
  );

  line-height: 1;
  letter-spacing: -0.04em;
}


.project-page-cta-card p {
  max-width: 650px;

  margin-top: 20px;

  color: var(--text-muted);

  line-height: 1.7;
}


.project-page-cta-actions {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 14px;
}


/* =========================================================
   PROJECT PAGE TABLET
   ========================================================= */

@media (max-width: 900px) {

  .project-overview-wrapper,
  .project-status-wrapper,
  .project-page-cta-card {
    grid-template-columns: 1fr;

    gap: 40px;
  }

}


/* =========================================================
   PROJECT PAGE MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .project-page-hero {
    padding:
      130px
      20px
      80px;
  }


  .project-page-logo {
    max-width: 290px;
  }


  .project-page-actions {
    flex-direction: column;
  }


  .project-page-actions .button {
    width: 100%;
  }


  .project-overview-section,
  .project-capabilities-section,
  .project-status-section,
  .project-future-section,
  .project-page-cta {
    padding:
      80px
      20px
      90px;
  }


  .project-capabilities-grid {
    grid-template-columns: 1fr;
  }


  .project-capability-card {
    min-height: auto;
  }


  .project-page-cta-card {
    padding: 32px 26px;
  }


  .project-page-cta-actions {
    width: 100%;
  }


  .project-page-cta-actions .button {
    width: 100%;
  }


  .status-row {
    flex-direction: column;

    gap: 6px;
  }


  .status-row strong {
    text-align: left;
  }

}


/* =========================================================
   FORGE PROJECT PAGE
   ========================================================= */

.forge-page-hero {
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(239, 35, 60, 0.12),
      transparent 40%
    ),

    radial-gradient(
      circle at 85% 20%,
      rgba(0, 189, 227, 0.04),
      transparent 40%
    ),

    linear-gradient(
      180deg,
      #050607 0%,
      #0a0708 100%
    );
}


.forge-eyebrow,
.forge-section-heading span,
.forge-status-copy > span,
.forge-cta-label {
  color: var(--crimson);
}


.forge-page-logo {
  filter:
    drop-shadow(
      0 0 18px rgba(239, 35, 60, 0.14)
    );
}


.forge-capabilities {
  background:
    linear-gradient(
      180deg,
      #080708 0%,
      #050607 100%
    );
}


.forge-capability-card:hover {
  border-color: rgba(239, 35, 60, 0.35);

  background:
    linear-gradient(
      145deg,
      rgba(239, 35, 60, 0.025),
      rgba(255, 255, 255, 0.01)
    );
}


.forge-number {
  color: rgba(239, 35, 60, 0.25);
}


.forge-status-section {
  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(239, 35, 60, 0.07),
      transparent 35%
    ),

    #050607;
}


.forge-status-panel .status-row strong {
  color: var(--crimson);
}


.forge-future-section {
  background:
    linear-gradient(
      180deg,
      #050607 0%,
      #080708 100%
    );
}


.forge-page-cta-card {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(239, 35, 60, 0.11),
      transparent 45%
    ),

    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.008)
    );
}


/* =========================================================
   CONTACT / FINAL CTA
   ========================================================= */

.contact-section {
  padding: 110px 24px;

  background:
    linear-gradient(
      180deg,
      #07090b 0%,
      #050607 100%
    );

  border-top: 1px solid var(--border);
}


.contact-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


.contact-card {
  position: relative;

  padding: 55px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(0, 0.7fr);

  gap: 60px;

  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(239, 35, 60, 0.10),
      transparent 40%
    ),

    radial-gradient(
      circle at 0% 100%,
      rgba(0, 189, 227, 0.07),
      transparent 40%
    ),

    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.008)
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}


/* Small top accent */

.contact-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 90px;
  height: 2px;

  background: var(--crimson);
}


/* =========================================================
   CONTACT COPY
   ========================================================= */

.contact-copy span {
  color: var(--cyan);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.contact-copy h2 {
  margin-top: 12px;

  font-size: clamp(
    2.5rem,
    5vw,
    4.5rem
  );

  line-height: 0.98;
  letter-spacing: -0.045em;
}


.contact-copy p {
  max-width: 600px;

  margin-top: 20px;

  color: var(--text-muted);

  font-size: 1.05rem;
  line-height: 1.7;
}


/* =========================================================
   CONTACT ACTIONS
   ========================================================= */

.contact-actions {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 18px;
}


.contact-email {
  color: var(--text-muted);

  transition: color var(--transition);
}


.contact-email:hover {
  color: var(--cyan);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 70px 24px 30px;

  background: #030405;

  border-top: 1px solid var(--border);
}


.footer-wrapper {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1.4fr);

  gap: 80px;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand {
  max-width: 320px;
}


.footer-logo {
  display: inline-block;
}


.footer-logo img {
  display: block;

  width: auto;
  height: 90px;

  object-fit: contain;
}


.footer-brand p {
  margin-top: 16px;

  color: var(--text-muted);
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-links {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 35px;
}


.footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 10px;
}


.footer-column h3 {
  margin-bottom: 8px;

  color: var(--text);

  font-size: 0.9rem;
}


.footer-column a {
  color: var(--text-muted);

  font-size: 0.9rem;

  transition: color var(--transition);
}


.footer-column a:hover {
  color: var(--text);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  width: 100%;
  max-width: var(--max-width);

  margin: 55px auto 0;
  padding-top: 22px;

  border-top: 1px solid var(--border);
}


.footer-bottom p {
  color: #6f7379;

  font-size: 0.8rem;
}


/* =========================================================
   CONTACT / FOOTER TABLET
   ========================================================= */

@media (max-width: 850px) {

  .contact-card {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .footer-wrapper {
    grid-template-columns: 1fr;

    gap: 45px;
  }

}


/* =========================================================
   CONTACT / FOOTER MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .contact-section {
    padding: 80px 20px;
  }


  .contact-card {
    padding: 32px 26px;
  }


  .contact-actions {
    width: 100%;
  }


  .contact-actions .button {
    width: 100%;
  }


  .site-footer {
    padding:
      55px
      20px
      25px;
  }


  .footer-logo img {
    height: 70px;
  }


  .footer-links {
    grid-template-columns: 1fr 1fr;

    gap: 35px;
  }


  .footer-bottom {
    margin-top: 40px;
  }

}