/* =========================================================
   MCT PROJECT UNIT
   projectunit.css
========================================================= */

:root {
  --navy: #061638;
  --navy-2: #081e4b;
  --navy-3: #0b285d;
  --blue: #91adff;
  --blue-2: #6f91e5;
  --orange: #ff6840;
  --white: #ffffff;
  --muted: #9aaed0;
  --muted-2: #657ba5;
  --line: rgba(150, 178, 230, 0.18);
  --card: rgba(255, 255, 255, 0.055);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(35, 81, 174, .55), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(255, 104, 64, .08), transparent 25%),
    linear-gradient(135deg, #04132f 0%, #071b47 48%, #061638 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
}

.glow-one {
  width: 400px;
  height: 400px;
  right: -220px;
  top: 180px;
  background: rgba(78, 124, 236, .12);
}

.glow-two {
  width: 350px;
  height: 350px;
  left: -220px;
  bottom: -100px;
  background: rgba(255, 104, 64, .08);
}


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

.pu-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(4, 18, 48, .72);
  backdrop-filter: blur(22px);
}

.pu-nav {
  width: min(1180px, calc(100% - 48px));
  height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-symbol {
  width: 31px;
  height: 31px;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border: 1px solid #7595d2;
  border-radius: 7px;
  transform: rotate(45deg);
}

.logo-symbol i {
  display: block;
  border-radius: 1px;
  background: #85a6ee;
}

.logo-symbol i:nth-child(2) {
  background: var(--orange);
}

.logo-symbol i:nth-child(3) {
  background: #274b91;
}

.logo-symbol i:nth-child(4) {
  background: white;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-copy b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: -.3px;
}

.logo-copy b span {
  font-weight: 400;
}

.logo-copy small {
  margin-top: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 6px;
  letter-spacing: 2.2px;
  color: #90a6cd;
}

.pu-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.pu-nav-links a {
  color: #b9c8e3;
  font-size: 12px;
  font-weight: 600;
  transition: .25s ease;
}

.pu-nav-links a:hover {
  color: white;
}

.pu-call {
  padding: 11px 16px;
  border: 1px solid #3d5d96;
  border-radius: 30px;
  color: #bfcde5;
  font-size: 11px;
  transition: .25s ease;
}

.pu-call:hover {
  border-color: #7898dc;
  transform: translateY(-2px);
}

.pu-call strong {
  color: white;
  margin-left: 7px;
}

.pu-menu {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pu-menu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: white;
}


/* MOBILE MENU */

.pu-mobile-menu {
  display: none;
  width: calc(100% - 30px);
  margin: 0 auto 15px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: #081d48;
}

.pu-mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.pu-mobile-menu a {
  padding: 13px;
  color: #c1cde1;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.pu-mobile-menu a:last-child {
  border: 0;
}


/* =========================================================
   MAIN PROJECT UNIT
========================================================= */

.project-unit {
  position: relative;
  padding: 100px 0 115px;
  overflow: hidden;
}

.grid-bg {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.pu-container {
  width: min(1050px, calc(100% - 40px));
  margin: auto;
  position: relative;
  z-index: 2;
}

.pu-intro {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.pu-kicker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  color: #8fa7d2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.pu-kicker span {
  width: 22px;
  height: 1px;
  background: var(--orange);
}

.pu-intro h1 {
  margin-top: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(58px, 8vw, 105px);
  line-height: .88;
  letter-spacing: -5px;
  font-weight: 600;
}

.pu-intro h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--blue);
}

.pu-intro p {
  max-width: 620px;
  margin: 30px auto 0;
  color: #a7b8d5;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {
  position: relative;
  margin: 65px auto 0;
  width: min(920px, 100%);
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(155,183,232,.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow:
    0 35px 100px rgba(0,0,0,.25),
    inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(24px);
}

.project-card::after {
  content: "MCT";
  position: absolute;
  top: -72px;
  right: -30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 190px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255,255,255,.018);
  pointer-events: none;
}

.card-top-line {
  position: absolute;
  top: 0;
  left: 38px;
  width: 70px;
  height: 2px;
  background: var(--orange);
}

.card-heading {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-heading > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.card-number {
  color: #7891bf;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
}

.card-label {
  color: #8298be;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #91a8cf;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.card-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8dff61;
  box-shadow: 0 0 12px #8dff61;
}

.card-title {
  position: relative;
  z-index: 2;
  margin: 32px 0 38px;
}

.card-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -2.5px;
  font-weight: 500;
}

.card-title h2 span {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--blue);
}

.card-title p {
  margin-top: 10px;
  color: #7186ac;
  font-size: 12px;
}


/* =========================================================
   FORM
========================================================= */

.project-form {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 18px;
}

.form-field {
  min-width: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.textarea-label label {
  display: block;
  margin-bottom: 9px;
  color: #8da4cc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-field label b,
.textarea-label label b {
  color: var(--orange);
}

.form-field label small {
  color: #5f769f;
  font-size: 9px;
  text-transform: none;
  letter-spacing: 0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  outline: none;
  border: 1px solid rgba(114,145,201,.27);
  border-radius: 5px;
  padding: 15px 16px;
  color: white;
  background: rgba(0,0,0,.12);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  transition: .25s ease;
}

.form-field input {
  height: 50px;
}

.form-field textarea {
  min-height: 175px;
  resize: vertical;
  line-height: 1.7;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #53698f;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #7598e1;
  background: rgba(15,40,88,.58);
  box-shadow: 0 0 0 3px rgba(117,152,225,.07);
}

.textarea-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.textarea-label label {
  margin-bottom: 9px;
}

#wordCount {
  color: #657da7;
  font-size: 9px;
  letter-spacing: .5px;
}


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

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 4px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 155px;
  border: 0;
  border-radius: 5px;
  padding: 16px 19px;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255,104,64,.16);
  transition: .25s ease;
}

.submit-btn b {
  font-size: 17px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(255,104,64,.25);
}

.action-info {
  color: #7e94b9;
  font-size: 11px;
  line-height: 1.65;
}

.action-info strong {
  color: white;
  font-size: 12px;
}

.action-info a {
  color: white;
  font-weight: 700;
}

.action-info small {
  color: #596f98;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  text-align: center;
  color: #9db3da;
  font-size: 12px;
}

.form-message.error {
  color: #ff8c70;
}

.form-message.success a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
}


/* =========================================================
   MINI CARDS
========================================================= */

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  min-height: 135px;
  padding: 23px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  transition: .3s ease;
}

.mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(145,173,255,.25);
  background: rgba(255,255,255,.04);
}

.mini-card > span {
  display: block;
  margin-bottom: 22px;
  color: #657da7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
}

.mini-card strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}

.mini-card p {
  color: #6f85aa;
  font-size: 11px;
  line-height: 1.5;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.bottom-cta {
  padding: 105px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(2,12,30,.42);
}

.bottom-label {
  color: #738ab3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
}

.bottom-cta h2 {
  margin-top: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .95;
  letter-spacing: -3px;
  font-weight: 500;
}

.bottom-cta h2 em {
  font-family: Georgia, serif;
  color: var(--blue);
  font-weight: 400;
}

.bottom-cta p {
  margin-top: 20px;
  color: #7186aa;
  font-size: 13px;
}

.bottom-phone {
  display: inline-block;
  margin-top: 30px;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.bottom-phone span {
  color: var(--blue);
  margin-left: 7px;
}


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

.pu-footer {
  min-height: 90px;
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #60769d;
  font-size: 10px;
}

.pu-footer a {
  color: #91a6c8;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

  .pu-nav {
    width: calc(100% - 32px);
    height: 78px;
  }

  .pu-nav-links,
  .pu-call {
    display: none;
  }

  .pu-menu {
    display: block;
  }

  .project-unit {
    padding-top: 75px;
  }

  .project-card {
    padding: 28px 22px;
  }

  .card-top-line {
    left: 22px;
  }

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

  .form-field.full,
  .form-actions,
  .form-message {
    grid-column: auto;
  }

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

  .pu-intro h1 {
    font-size: clamp(52px, 13vw, 80px);
    letter-spacing: -4px;
  }

  .card-title h2 {
    font-size: 38px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
}


@media (max-width: 500px) {

  .pu-container {
    width: calc(100% - 26px);
  }

  .pu-intro h1 {
    font-size: 48px;
    letter-spacing: -3px;
  }

  .pu-kicker {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .pu-intro p {
    font-size: 13px;
  }

  .project-card {
    margin-top: 45px;
    padding: 25px 17px;
    border-radius: 7px;
  }

  .card-heading {
    align-items: flex-start;
  }

  .card-status {
    display: none;
  }

  .card-title h2 {
    font-size: 33px;
  }

  .form-field input {
    height: 48px;
  }

  .bottom-cta {
    padding: 80px 15px;
  }

  .bottom-cta h2 {
    font-size: 42px;
  }

  .bottom-phone {
    font-size: 21px;
  }

  .pu-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 28px 15px;
  }
}
