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

:root {
  --navy: #0e2138;
  --navy-2: #132d4a;
  --blue: #1769ff;
  --green: #20c77a;
  --green-dark: #11955a;
  --ice: #eef6f7;
  --white: #ffffff;
  --text: #17304a;
  --muted: #64758a;
  --line: #dce6eb;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(15, 40, 65, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img, svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(14,33,56,0.08);
  box-shadow: 0 8px 28px rgba(14,33,56,0.06);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
	width: 175px;
	padding: 15px 0
}

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


.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand-text strong {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--navy);
}

.brand-text span {
  margin-top: 5px;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--navy);
  padding: 12px 20px;
  border-radius: 999px;
}

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

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}
header h1{

    position: absolute;
    padding: 2px;
    left: 50%;
    transform: translate(-50%);
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  background:
    radial-gradient(circle at 15% 15%, rgba(23,105,255,0.11), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(32,199,122,0.14), transparent 28%),
    linear-gradient(135deg, #fbfdff 0%, #edf7f6 100%);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.hero h1,
.section-heading h2,
.products-intro h2,
.impact h2,
.careers h2,
.contact h2 {
  color: var(--navy);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  margin-bottom: 26px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), #2584f5);
  box-shadow: 0 16px 30px rgba(23,105,255,0.22);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,0.68);
  border-color: rgba(14,33,56,0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(14,33,56,0.11);
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.orbit-card {
  width: min(500px, 100%);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.62);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), var(--shadow);
  backdrop-filter: blur(14px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23,105,255,0.2);
  border-radius: 50%;
}

.orbit-a { inset: 8%; }
.orbit-b { inset: 22%; border-color: rgba(32,199,122,0.28); }

.material-core {
  width: 46%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(14,33,56,0.16);
}

.material-core svg {
  width: 72%;
}

.material-core span {
  position: absolute;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .12em;
}

.material-core span:nth-of-type(1) { top: -28px; }
.material-core span:nth-of-type(2) { bottom: 8px; left: -55px; }
.material-core span:nth-of-type(3) { bottom: 8px; right: -50px; }

.chip {
  position: absolute;
  width: 56px;
  height: 34px;
  border-radius: 10px 16px 10px 18px;
  box-shadow: 0 14px 28px rgba(14,33,56,0.15);
  transform: rotate(18deg);
}

.chip-1 { top: 12%; left: 24%; background: var(--blue); }
.chip-2 { top: 23%; right: 12%; background: var(--green); transform: rotate(-22deg); }
.chip-3 { bottom: 14%; right: 23%; background: #9bc9ff; transform: rotate(34deg); }
.chip-4 { bottom: 21%; left: 12%; background: #78e2b2; transform: rotate(-15deg); }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  transform: translateX(-50%);
}

.about {
  background: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.section-heading h2,
.products-intro h2,
.careers h2,
.contact h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.about-content .lead {
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-grid article {
  border-top: 2px solid var(--line);
  padding-top: 22px;
}

.feature-grid article > span {
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 800;
}

.feature-grid h3 {
  margin: 14px 0 10px;
  color: var(--navy);
}

.feature-grid p {
  color: var(--muted);
  font-size: .92rem;
}

.services {
  background: var(--ice);
}

.centered {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 58px;
}

.centered .eyebrow {
  justify-content: center;
}

.centered h2 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.centered > p {
  color: var(--muted);
  margin-top: 20px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(14,33,56,0.06);
  border: 1px solid rgba(14,33,56,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 18px;
  font-size: 1.55rem;
  margin-bottom: 28px;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: .92rem;
}

.service-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
}

.products {
  background: var(--white);
}

.products-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.products-intro > p {
  color: var(--muted);
  padding-bottom: 10px;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-panel {
  min-height: 440px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.product-panel::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
}

.panel-blue { background: linear-gradient(145deg, #1769ff, #0c4fc5); }
.panel-green { background: linear-gradient(145deg, #20c77a, #0c8f58); }
.panel-dark { background: linear-gradient(145deg, #17304a, #091a2b); }

.product-number {
  font-size: .8rem;
  font-weight: 800;
  opacity: .7;
}

.product-panel .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
  opacity: .78;
}

.product-panel h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-panel p {
  max-width: 320px;
  font-size: .92rem;
  opacity: .82;
}

.impact {
  background: var(--navy);
  color: var(--white);
}

.impact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.impact h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 4vw, 4.8rem);
}

.eyebrow.light {
  color: #7ae4b7;
}

.impact-list {
  display: grid;
  gap: 8px;
}

.impact-list div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.impact-list span {
  color: #7ae4b7;
  font-weight: 800;
}

.impact-list p {
  font-size: 1.04rem;
  color: rgba(255,255,255,.82);
}

.careers {
  background: linear-gradient(135deg, #f8fbff, #edf8f4);
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  align-items: center;
}

.careers-copy p {
  max-width: 650px;
  color: var(--muted);
  margin: 24px 0 32px;
}

.careers-card {
  padding: 46px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.careers-card > span {
  color: var(--green-dark);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.careers-card h3 {
  color: var(--navy);
  font-size: 1.8rem;
  margin: 18px 0 28px;
}

.careers-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.careers-card li::before {
  content: "✓";
  color: var(--green-dark);
  font-weight: 900;
  margin-right: 12px;
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  margin: 24px 0 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border-radius: 28px;
  background: var(--ice);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  color: var(--navy);
  background: var(--white);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,105,255,.1);
}

textarea {
  resize: vertical;
}

.form-message {
  min-height: 24px;
  color: var(--green-dark);
  font-size: .85rem;
  font-weight: 700;
}

.site-footer {
  padding: 48px 0;
  background: #091a2b;
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand .brand-text strong {
  color: var(--white); 
  width: 165px
	 
}

.footer-brand .brand-text span {
  color: rgba(255,255,255,.55);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: .84rem;
  font-weight: 700;
}

.site-footer p {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.11);
  font-size: .78rem;
}

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

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .site-nav {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid,
  .split-layout,
  .products-intro,
  .impact-wrap,
  .careers-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .split-layout,
  .products-intro,
  .impact-wrap,
  .careers-grid,
  .contact-grid {
    gap: 42px;
  }

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

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-panel {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

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

  .brand-text strong {
    font-size: 1rem;
  }

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

  .hero-actions,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    gap: 14px;
  }

  .orbit-card {
    width: 92%;
  }

  .feature-grid,
  .services-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

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

  .contact-form,
  .careers-card {
    padding: 26px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
