:root {
  --ink: #101928;
  --paper: #f7f9f8;
  --white: #ffffff;
  --blue: #142db4;
  --blue-dark: #0b176d;
  --green: #00b85f;
  --green-soft: #d9f8e8;
  --line: rgba(16, 25, 40, 0.14);
}

* {
  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;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 70px;
  padding: 0 16px 0 18px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(4, 12, 52, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.logo-crop {
  position: relative;
  display: block;
  width: 153px;
  height: 42px;
  overflow: hidden;
}

.logo-image {
  position: absolute;
  top: -53px;
  left: -35px;
  max-width: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 0.84rem;
  font-weight: 700;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--green);
}

.header-cta {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 50, 0.98) 0%, rgba(7, 18, 72, 0.9) 38%, rgba(7, 18, 72, 0.32) 68%, rgba(4, 11, 38, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 8, 33, 0.6), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a9ffce;
}

.eyebrow-green {
  color: #51e996;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

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

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #052112;
}

.button-primary:hover {
  background: #2ddd7f;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  font-style: normal;
}

.about {
  padding: 130px 0 140px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-kicker span {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
}

.section-kicker p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  padding-top: 54px;
}

.about h2,
.team h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.about-copy {
  align-self: end;
}

.about-copy p,
.team-copy > p {
  margin: 0;
  color: #536071;
  font-size: 1rem;
  line-height: 1.8;
}

.about-copy p + p {
  margin-top: 20px;
}

.team {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: var(--blue-dark);
  color: var(--white);
}

.team::before {
  position: absolute;
  top: -240px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 110px solid rgba(0, 184, 95, 0.14);
  border-radius: 50%;
  content: "";
}

.team-inner {
  position: relative;
  z-index: 1;
}

.section-kicker-light {
  border-color: rgba(255, 255, 255, 0.18);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  padding-top: 64px;
}

.team-copy > p {
  color: rgba(255, 255, 255, 0.66);
}

.role-list {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.role-list span {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.08rem;
  font-weight: 700;
}

.role-list i {
  color: var(--green);
  font-size: 0.63rem;
  font-style: normal;
}

.solutions {
  padding: 130px 0 140px;
}

.solutions-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
  padding: 54px 0 72px;
}

.solutions-heading h2,
.statement-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.solutions-heading > p {
  max-width: 490px;
  margin: 0 0 4px auto;
  color: #536071;
  font-size: 1.02rem;
  line-height: 1.8;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.solution-card:nth-child(3),
.solution-card:nth-child(6) {
  background: var(--green-soft);
}

.solution-card:hover {
  z-index: 1;
  background: var(--blue);
  color: var(--white);
  transform: translateY(-5px);
}

.solution-number {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 900;
}

.solution-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(0, 184, 95, 0.34);
  border-radius: 16px;
  background: rgba(0, 184, 95, 0.07);
  color: var(--green);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.solution-card:hover .solution-icon {
  border-color: var(--green);
  background: var(--green);
  color: #052112;
  transform: rotate(-4deg) scale(1.04);
}

.solution-card h3 {
  margin: auto 0 16px;
  font-size: 1.43rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.solution-card p {
  margin: 0;
  color: #687383;
  font-size: 0.87rem;
  line-height: 1.65;
}

.solution-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.statement {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: #061036;
  color: var(--white);
}

.statement::after {
  position: absolute;
  right: 8%;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border: 80px solid rgba(0, 184, 95, 0.18);
  border-radius: 50%;
  content: "";
}

.statement-track {
  position: absolute;
  top: 50px;
  left: -20px;
  display: flex;
  gap: 70px;
  width: max-content;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.statement-copy {
  position: relative;
  z-index: 1;
}

.statement-copy h2 {
  max-width: 900px;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
}

.statement-copy h2 span {
  color: var(--green);
}

.contact {
  padding: 125px 0 120px;
  background: var(--blue);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 110px;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.contact-intro h2 {
  max-width: 650px;
}

.contact-intro > div:last-child > p:last-child {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-form {
  align-self: end;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  background: rgba(4, 12, 65, 0.3);
  box-shadow: 0 26px 90px rgba(2, 7, 38, 0.24);
}

.contact-form label {
  display: block;
}

.contact-form label + label {
  margin-top: 22px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input {
  width: 100%;
  height: 54px;
  padding: 0 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  transition: border-color 160ms ease;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus {
  border-color: var(--green);
}

.contact-form button {
  width: 100%;
  min-height: 58px;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #032111;
  cursor: pointer;
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-form button:hover {
  background: #2ddd7f;
  transform: translateY(-2px);
}

.privacy-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-success {
  min-height: 20px;
  margin: 14px 0 0;
  color: #aaffcd;
  font-size: 0.78rem;
  font-weight: 700;
}

footer {
  padding: 70px 0 28px;
  background: #050a20;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.footer-brand span {
  color: var(--green);
}

footer address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-phone {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--green);
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 12, 50, 0.98), rgba(7, 18, 72, 0.76));
  }

  .hero h1 {
    max-width: 650px;
  }

  .about-content,
  .team-grid,
  .solutions-heading,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-copy {
    max-width: 620px;
  }

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

  .contact-intro {
    gap: 44px;
  }

  .contact-form {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    height: 62px;
    padding-left: 12px;
  }

  .logo-crop {
    width: 126px;
    height: 38px;
  }

  .logo-image {
    top: -44px;
    left: -29px;
    width: 182px;
    height: auto;
  }

  .header-cta {
    padding: 12px 15px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 58px;
  }

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

  .hero-copy {
    font-size: 0.95rem;
  }

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

  .scroll-cue {
    display: none;
  }

  .about,
  .team,
  .solutions,
  .contact {
    padding-top: 90px;
    padding-bottom: 96px;
  }

  .about h2,
  .team h2,
  .solutions-heading h2,
  .contact h2 {
    font-size: 2.65rem;
  }

  .solutions-heading {
    padding-bottom: 48px;
  }

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

  .solution-card {
    min-height: 265px;
  }

  .statement {
    padding: 110px 0;
  }

  .statement-copy h2 {
    font-size: 3rem;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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