:root {
  --navy-950: #020917;
  --navy-900: #061428;
  --blue-500: #2081ff;
  --blue-400: #1ab5f1;
  --cyan-300: #4de5ff;
  --ink: #0b1a35;
  --muted: #60708a;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #f8fbff;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 0 6.5vw;
  color: #fff;
  background: rgba(2, 9, 23, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 260px;
}

.brand img {
  width: 128px;
  height: 56px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  text-transform: uppercase;
}

.brand strong {
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  flex: 1;
}

nav a {
  position: relative;
  padding: 36px 0 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

nav a:first-child::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue-500);
  border-radius: 999px;
}

.header-cta,
.primary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  background: linear-gradient(135deg, #2c8cff, #2866f6);
  box-shadow: 0 16px 35px rgba(32, 129, 255, 0.24);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 6vw;
  overflow: hidden;
  min-height: 580px;
  padding: 74px 6.5vw 38px;
  color: #fff;
  background:
    radial-gradient(circle at 91% 40%, rgba(26, 181, 241, 0.38), transparent 26%),
    radial-gradient(circle at 72% 14%, rgba(50, 72, 215, 0.35), transparent 26%),
    linear-gradient(115deg, #020917 0%, #061428 58%, #092857 100%);
}

.network {
  position: absolute;
  inset: auto -12% -34% 52%;
  height: 430px;
  opacity: 0.72;
  background-image:
    radial-gradient(circle, rgba(77, 229, 255, 0.95) 0 3px, transparent 4px),
    linear-gradient(26deg, transparent 0 42%, rgba(32, 129, 255, 0.22) 43% 44%, transparent 45%),
    linear-gradient(154deg, transparent 0 46%, rgba(32, 129, 255, 0.18) 47% 48%, transparent 49%),
    linear-gradient(8deg, transparent 0 48%, rgba(32, 129, 255, 0.16) 49% 50%, transparent 51%);
  background-size: 124px 92px, 310px 160px, 270px 180px, 340px 130px;
  filter: drop-shadow(0 0 16px rgba(26, 181, 241, 0.85));
}

.hero-copy,
.hero-mark,
.impact-content,
.impact-cta {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--blue-500);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(39px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: var(--blue-500);
}

.lead {
  max-width: 560px;
  margin: 28px 0 28px;
  font-size: 18px;
  line-height: 1.7;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 28px;
  max-width: 760px;
  margin-top: 54px;
}

.strength {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.strength span,
.impact-grid span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--blue-500);
  font-size: 25px;
  font-weight: 900;
}

.strength h3,
.impact-grid h3 {
  margin: 0 0 4px;
  color: var(--blue-500);
  font-size: 13px;
  text-transform: uppercase;
}

.strength p,
.impact-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.45;
}

.hero-mark {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 400px;
}

.hero-mark img {
  width: min(570px, 42vw);
  filter: drop-shadow(0 34px 45px rgba(0, 0, 0, 0.34));
}

.hero-mark p {
  margin: 18px 0 0;
  color: var(--blue-400);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.intro-section,
.news-section {
  padding: 34px 6.5vw 20px;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.section-kicker::after {
  display: block;
  width: 44px;
  height: 3px;
  margin: 14px auto 0;
  content: "";
  background: var(--blue-500);
  border-radius: 999px;
}

.section-kicker.light {
  color: #fff;
}

.intro-section h2,
.news-section h2 {
  margin: 0 auto;
  color: #112243;
  font-size: clamp(27px, 3vw, 37px);
  letter-spacing: -0.045em;
}

.intro-section p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.companies-section {
  padding: 16px 5.2vw 70px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 18px;
}

.company-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 22px 22px 20px;
  border: 1px solid #e4ebf5;
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 14px 35px rgba(9, 26, 56, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(9, 26, 56, 0.13);
}

.company-logo {
  display: grid;
  place-items: center;
  height: 136px;
  margin-bottom: 18px;
}

.company-logo img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}

.company-logo.asia-logo {
  overflow: hidden;
  border-radius: 6px;
}

.company-logo.asia-logo img {
  width: 100%;
}

.company-card p {
  margin: 0 0 20px;
  color: #33425c;
  font-size: 14px;
  line-height: 1.62;
}

.company-card a,
.news-card a {
  margin-top: auto;
  color: #064aa2;
  font-size: 13px;
  font-weight: 900;
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(26, 181, 241, 0.24), transparent 26%),
    linear-gradient(120deg, #031022, #08254e 72%, #0e4caf);
}

.impact-content {
  padding: 34px 6.5vw 44px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.impact-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
}

.impact-grid article span {
  grid-row: 1 / span 2;
}

.impact-cta {
  display: grid;
  align-content: center;
  padding: 42px;
  background: linear-gradient(135deg, rgba(24, 92, 224, 0.86), rgba(7, 34, 83, 0.92));
}

.impact-cta h2 {
  max-width: 330px;
  margin: 0 0 26px;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.impact-cta h2 span {
  color: #69c4ff;
}

.news-section {
  padding-bottom: 72px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
  text-align: left;
}

.news-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  min-height: 190px;
  padding: 14px;
  border: 1px solid #e4ebf5;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(9, 26, 56, 0.08);
}

.news-image {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(32, 129, 255, 0.16), rgba(10, 28, 58, 0.45)),
    #0b2451;
}

.news-image::before,
.news-image::after {
  position: absolute;
  content: "";
}

.news-image.solar::before {
  inset: 24px 18px auto;
  height: 72px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.42) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, #174c9f, #32b7ff);
  transform: perspective(150px) rotateX(44deg);
  box-shadow: 0 28px 38px rgba(0, 0, 0, 0.25);
}

.news-image.solar::after {
  right: 16px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #ffd35a;
  box-shadow: 0 0 34px rgba(255, 211, 90, 0.75);
}

.news-image.tech::before {
  inset: 20px 18px;
  border-left: 3px solid #29d8ff;
  background:
    linear-gradient(90deg, #38e0ff 0 36px, transparent 36px) 18px 18px / 70% 3px no-repeat,
    linear-gradient(90deg, #8f61ff 0 64px, transparent 64px) 26px 44px / 75% 3px no-repeat,
    linear-gradient(90deg, #37eac4 0 48px, transparent 48px) 18px 70px / 65% 3px no-repeat,
    linear-gradient(90deg, #ffffff 0 82px, transparent 82px) 30px 98px / 76% 3px no-repeat;
}

.news-image.commerce::before {
  left: 34px;
  top: 38px;
  width: 76px;
  height: 54px;
  border: 5px solid #6ed7ff;
  border-top: 0;
  border-radius: 8px 8px 12px 12px;
}

.news-image.commerce::after {
  left: 46px;
  top: 24px;
  width: 52px;
  height: 34px;
  border: 5px solid #6ed7ff;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.tag {
  margin: 8px 0 12px;
  color: #064ec3;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0 0 10px;
  color: #112243;
  font-size: 18px;
  line-height: 1.25;
}

.news-card p:not(.tag) {
  margin: 0 0 16px;
  color: #43536d;
  font-size: 14px;
  line-height: 1.55;
}

.outline-button {
  margin-top: 26px;
  color: #064aa2;
  background: transparent;
  border: 1px solid #1c65d8;
  box-shadow: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.85fr 1.15fr 1.2fr;
  gap: 34px;
  padding: 48px 6.5vw 22px;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(32, 129, 255, 0.32), transparent 30%),
    linear-gradient(120deg, #031022, #082447);
}

.footer-about img {
  width: 108px;
  height: 54px;
  object-fit: contain;
}

.footer-about strong,
.footer-about small {
  display: block;
  text-transform: uppercase;
}

.footer-about strong {
  margin-top: 4px;
}

.footer-about small {
  font-size: 10px;
  font-weight: 800;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.footer-about p {
  max-width: 270px;
  margin-top: 14px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter label div {
  display: flex;
  overflow: hidden;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 0 14px;
  color: #fff;
  border: 0;
  outline: 0;
  background: rgba(0, 0, 0, 0.1);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter button {
  width: 50px;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #2c8cff, #2866f6);
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

@media (max-width: 1180px) {
  .site-header {
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  nav a {
    padding: 10px 0;
    white-space: nowrap;
  }

  nav a:first-child::after {
    bottom: 2px;
  }

  .company-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  .hero,
  .impact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-mark img {
    width: min(520px, 82vw);
  }

  .hero-mark p {
    letter-spacing: 0.16em;
  }

  .strength-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    min-height: auto;
    padding: 16px 22px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 96px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding: 0 14px;
  }

  .hero,
  .intro-section,
  .companies-section,
  .impact-content,
  .news-section,
  .site-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .company-grid,
  .strength-grid,
  .impact-grid,
  .news-card {
    grid-template-columns: 1fr;
  }

  .company-card {
    min-height: 0;
  }

  .news-image {
    min-height: 190px;
  }
}
