* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Aptos", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 12px;
  top: -60px;
  background: #fff;
  padding: 12px 18px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.25s;
}
.site-header.is-fixed {
  position: fixed;
  background: rgba(7, 29, 23, 0.94);
  backdrop-filter: blur(14px);
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  display: block;
  width: 220px;
  height: auto;
}
.header-logo {
  width: clamp(205px, 17vw, 236px);
  height: auto;
  max-width: 100%;
  filter: none;
  transform: none;
  shape-rendering: geometricPrecision;
}
.footer-brand .brand-logo {
  width: 245px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  fill: var(--lime);
}
.brand span {
  display: flex;
  flex-direction: column;
}
.brand strong {
  font-size: 17px;
  letter-spacing: 0.13em;
}
.brand small {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.72;
  margin-top: 3px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}
.main-nav > a:not(.button):hover {
  color: var(--lime);
}
.main-nav > a:not(.button) {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 230px;
  background: var(--lime);
  color: var(--ink);
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.2s;
}
.button:hover {
  background: #fff;
  transform: translateY(-2px);
}
.button-small {
  min-width: auto;
  min-height: 44px;
  padding: 13px 17px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  height: 100svh;
  max-height: 970px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-dark {
  background: linear-gradient(135deg, #070b13 0%, #0a0f1a 58%, #0c1f27 100%);
  color: #fff;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.orb {
  position: absolute;
  border: 1px solid rgba(148, 237, 104, 0.24);
  border-radius: 50%;
}
.orb-a {
  width: 640px;
  height: 640px;
  right: -150px;
  top: 110px;
}
.orb-a:after,
.orb-a:before {
  content: "";
  position: absolute;
  border: 1px solid rgba(148, 237, 104, 0.13);
  border-radius: 50%;
  inset: 70px;
}
.orb-a:after {
  inset: 150px;
}
.orb-b {
  width: 9px;
  height: 9px;
  background: var(--lime);
  right: 34%;
  top: 28%;
  box-shadow: 0 0 30px var(--lime);
}
.hero-content {
  position: relative;
  padding-top: 80px;
}
.eyebrow,
.kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  margin-bottom: 34px;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--lime);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  max-width: 990px;
  margin-bottom: 36px;
}
.hero h1 em,
.philosophy h2 em,
.contact h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--lime);
}
.hero-content > p {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  max-width: 710px;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 42px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.text-link {
  font-size: 14px;
  font-weight: 650;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.text-link span {
  margin-left: 12px;
  color: var(--lime);
}
.hero-foot {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.44);
}
.section {
  padding: 130px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.kicker {
  display: block;
  color: #16875b;
  margin-bottom: 25px;
}
.section h2,
.philosophy h2 {
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 0;
}
.section-head > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 6px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  min-height: 600px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.product-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.product-visual {
  height: 220px;
  margin: 20px -5px 28px;
  position: relative;
  overflow: hidden;
}
.pitch {
  border: 1px solid #87b9ad;
  background: linear-gradient(150deg, #dbf4e9, #f4fbf7);
}
.pitch:before {
  content: "";
  position: absolute;
  border: 1px solid #87b9ad;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pitch:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #87b9ad;
  left: 50%;
}
.pitch i {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #0e7b5a;
  border-radius: 50%;
  z-index: 2;
}
.pitch i:nth-child(1) {
  left: 20%;
  top: 30%;
}
.pitch i:nth-child(2) {
  left: 65%;
  top: 65%;
}
.pitch i:nth-child(3) {
  left: 75%;
  top: 22%;
}
.tactic {
  background: #162340;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.tactic:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 80px;
  border: 2px solid #ed9065;
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(-20deg);
  left: 55px;
  top: 85px;
}
.tactic i {
  position: absolute;
  width: 11px;
  height: 11px;
  background: #f3a16e;
  border: 2px solid #162340;
  border-radius: 50%;
  z-index: 2;
}
.tactic i:nth-child(1) {
  left: 18%;
  top: 28%;
}
.tactic i:nth-child(2) {
  left: 42%;
  top: 42%;
}
.tactic i:nth-child(3) {
  left: 70%;
  top: 25%;
}
.tactic i:nth-child(4) {
  left: 77%;
  top: 68%;
}
.tactic i:nth-child(5) {
  left: 25%;
  top: 72%;
}
.data {
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 25px;
  background: #efeaf9;
}
.data i {
  flex: 1;
  background: #8870ba;
  height: 30%;
}
.data i:nth-child(2) {
  height: 55%;
}
.data i:nth-child(3) {
  height: 42%;
}
.data i:nth-child(4) {
  height: 80%;
}
.data i:nth-child(5) {
  height: 63%;
}
.data i:nth-child(6) {
  height: 95%;
  background: #5a438c;
}
.byline {
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.byline small {
  font-size: 8px;
  font-weight: 500;
}
.product h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.product > div:last-child > p:not(.byline) {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  min-height: 66px;
}
.product a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.atlas {
  color: #084f3b;
}
.argos {
  color: #263759;
}
.athena {
  color: #523e7b;
}
.philosophy {
  padding: 140px 0;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}
.kicker.light {
  color: var(--lime);
}
.philosophy p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 34px;
  max-width: 520px;
}
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.process li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.process b {
  font-size: 10px;
  color: var(--lime);
}
.process span {
  font-size: 18px;
  line-height: 1.2;
}
.custom {
  background: #e8eee8;
}
.custom-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0;
}
.custom-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1a, #10392e);
  color: #fff;
  padding: 64px;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.custom-card h2 {
  font-size: clamp(36px, 4.2vw, 60px);
  position: relative;
}
.mini-pitch {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  right: -110px;
  top: -120px;
}
.mini-pitch span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
}
.mini-pitch span:nth-child(1) {
  left: 25%;
  top: 44%;
}
.mini-pitch span:nth-child(2) {
  left: 55%;
  top: 70%;
}
.mini-pitch span:nth-child(3) {
  left: 70%;
  top: 25%;
}
.button-light {
  background: #fff;
}
.custom-copy {
  background: #fff;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.custom-copy > p:first-child {
  font-size: 24px;
  line-height: 1.4;
}
.custom-copy > p:nth-child(2) {
  color: var(--muted);
  line-height: 1.7;
}
.custom-copy ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
}
.custom-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.custom-copy li:before {
  content: "↘";
  color: #159866;
  margin-right: 14px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.values article {
  padding: 34px 26px 50px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values span {
  font-size: 10px;
  color: #14885b;
}
.values h3 {
  font-size: 25px;
  line-height: 1.2;
  margin: 55px 0 20px;
}
.values p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.contact {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.contact-inner {
  position: relative;
}
.contact h2 {
  font-size: clamp(47px, 6.2vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 1070px;
  margin-bottom: 55px;
}
.light-link {
  color: #fff;
}
.contact-lines {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(148, 237, 104, 0.13);
  border-radius: 50%;
  right: -150px;
  bottom: -260px;
  box-shadow:
    0 0 0 80px rgba(148, 237, 104, 0.025),
    0 0 0 160px rgba(148, 237, 104, 0.018);
}
footer {
  background: #070b13;
  color: #fff;
  padding: 80px 0 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-top > p {
  font-family: Georgia, serif;
  color: var(--lime);
  font-size: 20px;
  margin: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 50px 0;
}
.footer-links h3 {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--lime);
  margin-bottom: 22px;
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  margin: 12px 0;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--qf-color-deep-navy);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav > a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: #fff;
  }
  .hero {
    min-height: 720px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product {
    min-height: auto;
  }
  .section-head,
  .philosophy-grid,
  .custom-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 90px 0;
  }
  .philosophy {
    padding: 90px 0;
  }
  .custom-card {
    padding: 42px;
    min-height: 500px;
  }
  .custom-copy {
    padding: 42px;
  }
  .product-visual {
    height: 280px;
  }
  .footer-top {
    align-items: flex-start;
    gap: 25px;
    flex-direction: column;
  }
  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }
  .site-header {
    padding: 17px 16px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-content > p {
    font-size: 16px;
  }
  .hero-foot span:nth-child(2) {
    display: none;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
  }
  .actions .text-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .button {
    width: 100%;
  }
  .section-head {
    margin-bottom: 42px;
  }
  .section h2,
  .philosophy h2 {
    font-size: 39px;
  }
  .product {
    padding: 18px;
  }
  .product-visual {
    height: 210px;
  }
  .custom-card,
  .custom-copy {
    padding: 30px;
  }
  .custom-card {
    min-height: 510px;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .values h3 {
    margin-top: 35px;
  }
  .contact {
    padding: 100px 0;
  }
  .contact h2 {
    font-size: 43px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .footer-top > p {
    font-size: 17px;
  }
}
