:root {
  --ink: #101936;
  --muted: #5f6c89;
  --purple: #5547ff;
  --line: #dfe2ea;
  --cyan: #12b9df;
  --orange: #ff6a42;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(85, 71, 255, 0.3);
  outline-offset: 4px;
}
.shell { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }
.section { padding-block: 100px; }

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(108, 84, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(15, 190, 224, 0.16), transparent 33%),
    linear-gradient(115deg, #fbfaff 24%, #fff 58%, #f1fbfe 100%);
}
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: block;
  width: 120px;
  line-height: 0;
}
.logo img { display: block; width: 100%; height: auto; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #34405e;
  font-size: 14px;
}
.site-header nav > a:not(.button) { transition: color 180ms ease; }
.site-header nav > a:not(.button):hover { color: var(--purple); }
.menu-button { display: none; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--purple);
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 15px 30px rgba(85, 71, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover {
  box-shadow: 0 18px 36px rgba(85, 71, 255, 0.25);
  transform: translateY(-2px);
}
.button-small { min-height: 42px; padding-inline: 20px; font-size: 13px; }
.button-outline { background: rgba(255,255,255,0.62); box-shadow: none; color: var(--purple); }
.hero-content {
  display: grid;
  min-height: 540px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.orange-dot { display: flex; align-items: center; color: #556079; }
.orange-dot::before {
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,106,66,0.11);
  content: "";
}
.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(60px, 5.6vw, 78px);
  font-weight: 760;
  letter-spacing: -4.8px;
  line-height: 0.97;
}
.hero h1 span { display: block; margin-top: 8px; color: var(--purple); }
.hero-intro {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }

.orbit { position: relative; width: 500px; height: 440px; justify-self: end; }
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(85, 71, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-one { width: 480px; height: 380px; }
.ring-two { width: 360px; height: 275px; border-color: rgba(18,185,223,0.28); }
.orbit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 230px;
  height: 216px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid #fff;
  border-radius: 32px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 26px 50px rgba(16,25,54,0.12);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
}
.orbit-card > p {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.orbit-card h2 { margin: 0; font-size: 25px; letter-spacing: -1px; line-height: 1.08; }
.orbit-card small {
  display: flex;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
}
.orbit-card small i, .sector-label i {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #35c591;
  box-shadow: 0 0 0 4px rgba(53,197,145,0.12);
}
.sector-label {
  position: absolute;
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(16,25,54,0.06);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 16px 28px rgba(16,25,54,0.08);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}
.sector-label.solar { top: 5px; left: 238px; }
.sector-label.solar i { background: var(--orange); box-shadow: none; }
.sector-label.agriculture { top: 192px; right: -8px; }
.sector-label.education { top: 201px; left: -18px; }
.sector-label.education i { background: var(--cyan); box-shadow: none; }
.sector-label.medical { bottom: 1px; left: 212px; }
.sector-label.medical i { background: #e653a3; box-shadow: none; }
.orbit-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--purple); }
.dot-one { top: 90px; left: 57px; }
.dot-two { top: 121px; left: 105px; }
.dot-three { right: 105px; bottom: 58px; background: var(--cyan); }
.dot-four { right: 60px; bottom: 92px; background: var(--cyan); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stats div {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding-right: 26px;
  border-right: 1px solid var(--line);
}
.hero-stats div:nth-child(2) { padding-left: 26px; }
.hero-stats div:last-child { grid-column: span 2; padding-left: 26px; border-right: 0; }
.hero-stats strong { font-size: 20px; }
.hero-stats span { margin-top: 10px; color: var(--muted); font-size: 12px; }

.spark { display: block; margin-bottom: 28px; font-size: 22px; }
.spark.orange { color: var(--orange); }
.spark.cyan { color: var(--cyan); }
.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  align-items: center;
  gap: 90px;
  margin-bottom: 62px;
}
.section-heading h2, .center-heading h2, .about-copy h2, .why-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 62px);
  font-weight: 450;
  letter-spacing: -3.4px;
  line-height: 1.02;
}
.section-heading > p, .about-copy > p:not(.eyebrow), .why-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 30px;
}
.service-card {
  display: flex;
  min-height: 436px;
  grid-column: span 2;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card:nth-child(3) { border-right: 0; }
.service-card:nth-child(4), .service-card:nth-child(5) { min-height: 390px; grid-column: span 3; border-bottom: 0; }
.service-card:nth-child(5) { border-right: 0; }
.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #a4adc2;
  font-size: 12px;
  font-weight: 700;
}
.service-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding-bottom: 10px;
  border-radius: 15px;
  background: #f0edff;
  color: var(--purple);
}
.service-icon i { width: 5px; border-radius: 5px; background: currentColor; }
.service-icon i:nth-child(1) { height: 15px; }
.service-icon i:nth-child(2) { height: 25px; }
.service-icon i:nth-child(3) { height: 20px; }
.service-icon.green { background: #e5f8f1; color: #29bd8b; }
.service-icon.blue { background: #e7f8fc; color: var(--cyan); }
.service-icon.pink { background: #fff0f8; color: #e653a3; }
.service-icon.orange { background: #fff0e9; color: #ff693d; }
.service-card h3 { margin: 44px 0 14px; font-size: 20px; font-weight: 480; letter-spacing: -0.7px; }
.service-card > p, .service-card li { color: var(--muted); font-size: 13px; line-height: 1.75; }
.service-card > p { margin: 0; }
.service-card ul { margin: 22px 0 26px; padding-left: 16px; }
.service-card li { padding-left: 2px; }
.service-card li::marker { color: var(--purple); }
.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #07122e;
  font-size: 13px;
  font-weight: 750;
}
.service-card > a span { color: var(--purple); }

.about { background: #f6f7fb; }
.about-inner { display: grid; grid-template-columns: 0.72fr 1fr; gap: 90px; }
.about-copy { padding-top: 4px; }
.about-copy h2 { margin-bottom: 26px; }
.about-copy > p:not(.eyebrow) { max-width: 430px; }
.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 34px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 750;
}
.purpose-cards { display: grid; gap: 18px; }
.purpose-card {
  min-height: 336px;
  padding: 46px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(16,25,54,0.06);
}
.purpose-card > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #efedff;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.purpose-card h3 {
  max-width: 540px;
  margin: 62px 0 18px;
  font-size: 37px;
  font-weight: 430;
  letter-spacing: -2px;
  line-height: 1.15;
}
.purpose-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.purpose-card.vision { background: var(--ink); color: #fff; }
.purpose-card.vision > span { background: #0c3e63; color: #1dd2ef; }
.purpose-card.vision p { color: #c3cbe0; }

.process { background: linear-gradient(110deg, #f5f5ff 5%, #f2fbfd 100%); }
.center-heading { max-width: 720px; margin-inline: auto; text-align: center; }
.center-heading h2 { margin-bottom: 24px; }
.center-heading > p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 82px; }
.process-step { position: relative; text-align: center; }
.process-step::before {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  content: "";
}
.process-step:last-child::before { display: none; }
.step-number {
  position: relative;
  z-index: 1;
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 34px;
  border: 10px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 14px 32px rgba(16,25,54,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.process-step:nth-child(2) .step-number { background: #6559f5; }
.process-step:nth-child(3) .step-number { background: #318ce6; }
.process-step:nth-child(4) .step-number { background: var(--cyan); }
.process-step h3 { margin: 0 0 16px; font-size: 18px; font-weight: 480; }
.process-step p { max-width: 250px; margin: 0 auto; color: var(--muted); font-size: 13px; line-height: 1.7; }

.why { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 90px; }
.why-copy h2 { margin-bottom: 26px; }
.why-copy > p:not(.eyebrow) { max-width: 430px; }
.reason {
  display: grid;
  min-height: 120px;
  grid-template-columns: 44px 1fr 48px;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}
.reason:last-child { border-bottom: 1px solid var(--line); }
.reason > span { color: #9ca7bd; font-size: 12px; font-weight: 750; }
.reason h3 { margin: 0 0 10px; font-size: 18px; font-weight: 480; }
.reason p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.reason > i {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #efedff;
  color: var(--purple);
  font-style: normal;
  font-size: 21px;
}

.project-cta {
  display: flex;
  width: min(1060px, calc(100% - 64px));
  min-height: 535px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 52px auto 104px;
  padding: 58px 60px;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 96% 7%, rgba(18, 185, 223, 0.32), transparent 34%),
    radial-gradient(circle at 5% 98%, rgba(85, 71, 255, 0.24), transparent 34%),
    #f3f2ff;
  text-align: center;
}
.project-cta-logo {
  display: block;
  width: 118px;
  height: auto;
  margin-bottom: 25px;
}
.project-cta .eyebrow { margin-bottom: 25px; }
.project-cta h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(50px, 5.4vw, 68px);
  font-weight: 420;
  letter-spacing: -4px;
  line-height: 1.04;
}
.project-cta-copy {
  max-width: 620px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.project-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.project-cta-actions .button { min-width: 190px; }
.project-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
  color: #53617f;
  font-size: 12px;
}
.project-cta-contact a { color: #253353; font-weight: 700; }
.project-cta-contact address { margin: 0; font-style: normal; }

.footer { padding-bottom: 34px; }
.footer-main { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 70px; padding-bottom: 70px; }
.footer-brand .logo { width: 140px; transform: scale(1.15); transform-origin: left top; }
.footer-brand > p { max-width: 330px; margin: 50px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.footer-column { display: flex; flex-direction: column; gap: 18px; }
.footer-column h2 { margin: 0 0 10px; font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; }
.footer-column a, .footer-column p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-column a:hover { color: var(--purple); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #7e8aa4;
  font-size: 11px;
}
.footer-bottom p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .site-header nav { gap: 22px; }
  .hero-content { grid-template-columns: 1fr 0.9fr; }
  .orbit { width: 410px; transform: scale(0.85); transform-origin: center right; }
  .hero h1 { font-size: 62px; }
  .about-inner, .why { gap: 50px; }
  .footer-main { gap: 35px; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 40px, 680px); }
  .section { padding-block: 74px; }
  .site-header { height: 84px; }
  .menu-button {
    position: relative;
    z-index: 22;
    display: flex;
    width: 45px;
    height: 45px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    cursor: pointer;
  }
  .menu-button span { width: 18px; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-header nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(248,249,255,0.98);
    font-size: 22px;
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .site-header nav.open { visibility: visible; opacity: 1; }
  .hero { min-height: auto; padding-bottom: 30px; }
  .hero-content { grid-template-columns: 1fr; padding-top: 60px; }
  .hero h1 { font-size: clamp(52px, 13vw, 76px); }
  .orbit { width: 500px; margin: 10px auto 0; justify-self: center; transform: scale(0.85); transform-origin: center; }
  .hero-stats { margin-top: 10px; grid-template-columns: repeat(3, 1fr); }
  .hero-stats div:last-child { grid-column: span 1; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) {
    min-height: 420px;
    grid-column: span 1;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .service-card:nth-child(2), .service-card:nth-child(4) { border-right: 0; }
  .service-card:nth-child(5) { grid-column: span 2; border-right: 0; border-bottom: 0; }
  .about-inner, .why { grid-template-columns: 1fr; }
  .about-copy h2 br, .why-copy h2 br { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 0; }
  .process-step:nth-child(2)::before { display: none; }
  .project-cta {
    width: min(100% - 40px, 680px);
    min-height: 500px;
    margin-bottom: 74px;
    padding: 50px 36px;
  }
  .project-cta h2 { font-size: 52px; letter-spacing: -3px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 32px, 480px); }
  .section { padding-block: 64px; }
  .hero-content { min-height: auto; padding-top: 36px; }
  .hero h1 { letter-spacing: -3.4px; }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .orbit { width: 470px; height: 390px; margin-left: -24px; transform: scale(0.72); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div, .hero-stats div:nth-child(2), .hero-stats div:last-child {
    min-height: 86px;
    grid-column: auto;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-stats div:last-child { border-bottom: 0; }
  .section-heading h2, .center-heading h2, .about-copy h2, .why-copy h2 { font-size: 43px; letter-spacing: -2.5px; }
  .service-grid { display: block; border-radius: 22px; }
  .service-card, .service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) {
    min-height: 410px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-card:nth-child(5) { border-bottom: 0; }
  .service-card { padding: 28px; }
  .purpose-card { min-height: auto; padding: 30px; }
  .purpose-card h3 { margin-top: 46px; font-size: 31px; }
  .process-grid { grid-template-columns: 1fr; gap: 42px; }
  .process-step::before { display: none; }
  .process-step p { max-width: 310px; }
  .reason { min-height: 136px; grid-template-columns: 30px 1fr 40px; gap: 12px; }
  .project-cta {
    width: calc(100% - 32px);
    min-height: auto;
    margin: 16px auto 64px;
    padding: 44px 22px;
    border-radius: 28px;
  }
  .project-cta-logo { width: 104px; margin-bottom: 20px; }
  .project-cta .eyebrow { margin-bottom: 21px; }
  .project-cta h2 { font-size: 42px; letter-spacing: -2.5px; }
  .project-cta-copy { margin-top: 22px; font-size: 14px; }
  .project-cta-actions { width: 100%; flex-direction: column; }
  .project-cta-actions .button { width: 100%; }
  .project-cta-contact { flex-direction: column; gap: 7px; margin-top: 28px; line-height: 1.5; }
  .project-cta-contact > span { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; margin-bottom: 20px; }
  .footer-column:last-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
