@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap");

:root {
  --ink: #08111f;
  --ink-soft: #425063;
  --blue: #1d5cff;
  --blue-light: #7da4ff;
  --paper: #f4f6f8;
  --white: #fff;
  --line: #d9dee6;
  --max-width: 1180px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

a:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: max(20px, env(safe-area-inset-top)) 0 20px;
  color: var(--white);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  place-items: center;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.header-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-link {
  display: inline-flex;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.header-link:hover {
  border-color: rgb(255 255 255 / 24%);
  background: rgb(255 255 255 / 7%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - var(--max-width)) / 2)) 90px;
  color: var(--white);
  background:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    radial-gradient(circle at 75% 42%, #193360 0, #0b1930 25%, #07111f 55%);
  background-size: 72px 72px, 72px 72px, auto;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero::after {
  position: absolute;
  right: -150px;
  bottom: -340px;
  width: 800px;
  height: 800px;
  border: 1px solid rgb(118 162 255 / 14%);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentcolor;
}

.hero .eyebrow {
  color: var(--blue-light);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(46px, 6vw, 82px);
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--blue-light);
}

.intro {
  max-width: 600px;
  margin-bottom: 36px;
  color: #bcc8d9;
  font-size: 18px;
}

.intro strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: #3971ff;
}

.button-secondary {
  border-color: rgb(255 255 255 / 25%);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgb(255 255 255 / 60%);
}

.portrait-wrap {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(34vw, 420px);
}

.portrait-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
  box-shadow: 0 35px 80px rgb(0 0 0 / 28%);
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgb(125 164 255 / 28%);
  border-radius: 50%;
}

.orbit-one {
  inset: -28px;
}

.orbit-two {
  inset: -68px;
  border-color: rgb(125 164 255 / 12%);
}

.status-card {
  position: absolute;
  z-index: 3;
  right: -38px;
  bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 210px;
  padding: 14px 18px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius);
  background: rgb(9 23 43 / 82%);
  box-shadow: 0 12px 36px rgb(0 0 0 / 22%);
  backdrop-filter: blur(12px);
  font-size: 13px;
  line-height: 1.35;
}

.status-card small {
  display: block;
  color: #8fa0b7;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ee3a6;
  box-shadow: 0 0 0 5px rgb(78 227 166 / 12%);
}

.section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 120px 0;
}

.about {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.9fr 1.1fr;
}

.section-heading h2,
.vision h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 57px);
  letter-spacing: -0.045em;
}

.about-copy {
  padding-top: 36px;
}

.about-copy p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.expertise {
  width: 100%;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  background: #e9edf2;
}

.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.compact .eyebrow {
  margin: 0 0 10px;
}

.compact h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.card-grid {
  display: grid;
  gap: 1px;
  background: #cfd6df;
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  position: relative;
  min-height: 320px;
  padding: 38px 32px;
  background: var(--paper);
}

.card-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #8d99aa;
  font-size: 11px;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 72px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.info-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.vision {
  display: grid;
  gap: 100px;
  grid-template-columns: 1fr 1fr;
}

.vision-copy > p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.interest-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.interest-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.interest-list small {
  color: #8995a6;
  font-size: 10px;
}

.updates {
  padding: 120px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: #07111f;
}

.updates-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.updates-heading {
  display: grid;
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
  grid-template-columns: 1.25fr 0.75fr;
}

.updates-heading h2,
.featured-project h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 57px);
  letter-spacing: -0.045em;
}

.updates-heading > p {
  margin: 0 0 8px;
  color: #9eacbf;
  font-size: 16px;
}

.news-grid {
  display: grid;
  gap: 1px;
  background: rgb(255 255 255 / 15%);
  grid-template-columns: repeat(2, 1fr);
}

.news-card {
  min-height: 390px;
  padding: 34px;
  background: #0b1829;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.news-meta time,
.news-topic {
  color: #8391a5;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-brand {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.tesla-mark {
  color: #ff6d6d;
}

.spacex-mark {
  color: var(--blue-light);
}

.news-topic {
  margin: 0 0 15px;
}

.news-card h3 {
  max-width: 470px;
  margin-bottom: 18px;
  font-size: 25px;
}

.news-card > p:not(.news-topic) {
  max-width: 500px;
  margin-bottom: 28px;
  color: #aeb9c8;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  text-decoration: none;
}

.text-link:hover {
  color: var(--white);
}

.updates-note {
  margin: 18px 0 0;
  color: #69778a;
  font-size: 11px;
}

.featured-project {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
}

.project-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 24px;
  color: var(--ink-soft);
  font-size: 17px;
}

.project-status,
.panel-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-panel {
  padding: 42px;
  color: var(--white);
  background: var(--blue);
}

.panel-label {
  color: #dce6ff;
}

.project-statement {
  margin: 28px 0 42px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.project-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-steps li {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgb(255 255 255 / 22%);
  grid-template-columns: 28px 0.8fr 1.2fr;
}

.project-steps span,
.project-steps small {
  color: #c6d5ff;
  font-size: 11px;
}

.project-steps strong {
  font-family: "Manrope", sans-serif;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 110px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--blue);
}

.contact::after {
  position: absolute;
  top: -220px;
  right: -80px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgb(255 255 255 / 4%), 0 0 0 160px rgb(255 255 255 / 3%);
  content: "";
}

.contact > * {
  position: relative;
  z-index: 1;
}

.eyebrow.light {
  color: #dce6ff;
}

.contact h2 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.05em;
}

.contact > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 32px;
  color: #dce6ff;
  font-size: 17px;
}

.button-light {
  color: var(--blue);
  background: var(--white);
}

.contact-note {
  display: block;
  margin-top: 14px;
  color: #c5d5ff;
  font-size: 11px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 30px max(24px, calc((100vw - var(--max-width)) / 2));
  color: #6f7c8d;
  background: #060d17;
  font-size: 12px;
}

footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero {
    gap: 40px;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .portrait-wrap {
    width: min(36vw, 380px);
  }

  .status-card {
    right: -10px;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .updates {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 130px;
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    width: min(56vw, 380px);
    margin: 72px auto 20px;
    justify-self: center;
  }

  .about,
  .vision,
  .featured-project,
  .updates-heading {
    gap: 50px;
    grid-template-columns: 1fr;
  }

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

  .news-card {
    min-height: 340px;
  }

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

  .about-copy {
    padding-top: 0;
  }

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

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

  .card-icon {
    margin-bottom: 42px;
  }
}

@media (max-width: 600px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .brand {
    gap: 8px;
    font-size: 14px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-nav {
    gap: 0;
  }

  .header-link {
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }

  .header-link:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
    padding-right: max(18px, env(safe-area-inset-right));
    padding-bottom: 70px;
    padding-left: max(18px, env(safe-area-inset-left));
    background-size: 48px 48px, 48px 48px, auto;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .intro {
    margin-bottom: 28px;
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .portrait-wrap {
    width: min(76vw, 330px);
    margin-top: 64px;
  }

  .status-card {
    right: 50%;
    bottom: -36px;
    min-width: 200px;
    transform: translateX(50%);
  }

  .section {
    width: calc(100% - 36px);
    padding: 80px 0;
  }

  .about {
    gap: 34px;
  }

  .about-copy p,
  .vision-copy > p:last-child {
    font-size: 16px;
  }

  .expertise {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .compact {
    display: block;
  }

  .contact {
    padding: 80px 18px;
  }

  .updates {
    padding: 80px 18px;
  }

  .news-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .news-meta {
    margin-bottom: 36px;
  }

  .news-card h3 {
    font-size: 22px;
  }

  .updates-heading {
    gap: 26px;
  }

  .project-panel {
    padding: 30px 24px;
  }

  .project-steps li {
    gap: 8px;
    grid-template-columns: 24px 1fr;
  }

  .project-steps small {
    grid-column: 2;
  }

  footer {
    gap: 8px;
    padding: 24px max(18px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand > span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 12.5vw, 50px);
  }

  .hero-actions {
    gap: 10px;
  }

  .portrait-wrap {
    width: 78vw;
  }

  .project-statement {
    font-size: 21px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
