:root {
  --ink: #0b1930;
  --navy: #071326;
  --paper: #f4f3ed;
  --lime: #d6fb54;
  --line: rgba(11, 25, 48, 0.16);
  --muted: #657084;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --max: 1240px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.navbar {
  height: 80px;
  background: rgba(244, 243, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 5;
}
.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -0.07em;
  font-size: 1.25rem;
}
.logo-mark {
  font-family: Georgia, serif;
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-style: italic;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
}
.nav-links a {
  color: #6d7481;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--ink);
}
.btn {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
}
.btn-primary {
  background: var(--lime);
  color: var(--ink);
}
.btn-primary:hover {
  background: #c8ed47;
}
.mobile-menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  padding: 78px 0 0;
  background: var(--navy);
  color: #f8f8f4;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 0.91fr 1.09fr;
  align-items: center;
  gap: 52px;
}
.eyebrow {
  font: 500 0.68rem var(--mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
}
.hero h1,
.spotlight h2,
.work-section h2,
.contact-layout h2 {
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin: 22px 0;
}
.hero h1 em,
.spotlight h2 em,
.work-section h2 em,
blockquote em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero-intro {
  max-width: 440px;
  color: #c2c8d0;
  font-size: 1.05rem;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 27px;
  align-items: center;
}
.text-link {
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.text-link span {
  font-size: 1.2rem;
}
.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 510px;
  background: #0e2851;
  padding: 14px;
}
.hero-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 76% 32%,
    rgba(213, 251, 84, 0.23),
    transparent 30%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-art img {
  height: 100%;
  min-height: 510px;
  opacity: 0.9;
  mix-blend-mode: screen;
}
.hero-art-top,
.art-caption {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  font: 400 0.62rem var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.hero-art-top {
  top: 27px;
}
.art-caption {
  bottom: 29px;
  justify-content: flex-start;
  gap: 8px;
}
.signal {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  margin-top: 2px;
}
.client-row {
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font: 0.66rem var(--mono);
  text-transform: uppercase;
  color: #aeb8c7;
}
.client-row div {
  display: flex;
  gap: 38px;
  align-items: center;
  color: #f1f2ed;
}
.client-row b {
  font: 700 clamp(0.8rem, 1.5vw, 1.15rem) var(--sans);
  letter-spacing: -0.07em;
}
.section {
  padding: 142px 0;
}
.intro-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 8vw, 125px);
  align-items: center;
}
.intro-visual {
  position: relative;
  min-height: 575px;
  overflow: hidden;
  border-radius: 0 96px 96px 96px;
}
.intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.07em;
  margin: 18px 0 22px;
}
.intro-copy h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.intro-copy > p:not(.eyebrow) {
  max-width: 580px;
  font-size: 1.08rem;
  color: var(--muted);
}
.intro-copy .eyebrow,
.spotlight-copy .eyebrow,
.home-discovery-copy .eyebrow,
.faq-layout .eyebrow {
  color: #08774d;
}
.intro-copy .eyebrow span,
.spotlight-copy .eyebrow span,
.home-discovery-copy .eyebrow span,
.faq-layout .eyebrow span {
  background: #08774d;
}
.partnership-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 42px;
  margin-top: 48px;
}
.partnership-points article {
  position: relative;
  padding-left: 20px;
}
.partnership-points i {
  position: absolute;
  left: 0;
  top: 5px;
  width: 9px;
  height: 9px;
  background: #43a85a;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.partnership-points article:nth-child(2) i {
  background: #f06448;
}
.partnership-points article:nth-child(3) i {
  background: #7c55dc;
}
.partnership-points article:nth-child(4) i {
  background: #f6b638;
}
.partnership-points h3 {
  font-size: 0.93rem;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.partnership-points p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}
.capabilities {
  padding-top: 20px;
}
.capabilities .section-head {
  margin-bottom: 48px;
}
.capabilities .section-head h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-top: 18px;
}
.capabilities .section-head h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 27px;
}
.capabilities-list {
  border-top: 1px solid var(--line);
}
.capabilities-list article {
  display: grid;
  grid-template-columns: 1fr 2.2fr 2.2fr;
  gap: 24px;
  align-items: center;
  padding: 33px 0;
  border-bottom: 1px solid var(--line);
}
.capabilities-list span {
  font: 400 0.68rem var(--mono);
  color: var(--muted);
}
.capabilities-list h3 {
  font-size: 1.65rem;
  letter-spacing: -0.055em;
}
.capabilities-list p {
  color: var(--muted);
  font-size: 0.93rem;
  max-width: 330px;
}
.process-section {
  background: var(--navy);
  color: #f5f6ef;
}
.process-heading {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 110px;
  align-items: start;
}
.process-heading .eyebrow {
  color: #c6d6cf;
}
.process-heading h2,
.faq-layout h2 {
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}
.process-heading h2 em,
.faq-layout h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.process-heading > div > p {
  max-width: 495px;
  margin-top: 22px;
  color: #bac5cd;
  font-size: 1.03rem;
}
.process-steps {
  margin: 76px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.process-steps article {
  min-height: 250px;
  padding: 28px 30px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.process-steps article:first-child {
  padding-left: 0;
}
.process-steps article:last-child {
  border-right: 0;
}
.process-steps span {
  font: 400 0.68rem var(--mono);
  color: var(--lime);
}
.process-steps h3 {
  font-size: 1.5rem;
  letter-spacing: -0.055em;
  margin: 58px 0 12px;
}
.process-steps p {
  max-width: 300px;
  color: #bac5cd;
  font-size: 0.9rem;
}
.process-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lime);
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--lime);
}
.process-cta span {
  font-size: 1.15rem;
}
.spotlight {
  background: #dbe5df;
  padding: 0;
}
.spotlight-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.spotlight-photo img {
  filter: saturate(0.72) contrast(1.05);
}
.spotlight-copy {
  padding: 84px clamp(34px, 7vw, 105px);
  align-self: center;
}
.spotlight-copy h2 {
  font-size: clamp(2.7rem, 4.3vw, 4.6rem);
}
.spotlight-copy > p:not(.eyebrow) {
  color: #526677;
  font-size: 1.02rem;
}
.mini-points {
  display: grid;
  gap: 12px;
  margin-top: 35px;
  font-size: 0.8rem;
  font-weight: 800;
}
.mini-points span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11, 25, 48, 0.2);
}
.work-section h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  margin-bottom: 0;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 20px;
}
.project {
  height: 430px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.project-large {
  height: 560px;
}
.project img {
  opacity: 0.74;
  transition: 0.4s;
}
.project:hover img {
  transform: scale(1.04);
  opacity: 0.62;
}
.project:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 38%, rgba(7, 19, 38, 0.9));
}
.project div {
  position: absolute;
  z-index: 1;
  left: 27px;
  right: 27px;
  bottom: 25px;
}
.project span,
.project b {
  font: 500 0.65rem var(--mono);
  text-transform: uppercase;
}
.project h3 {
  font-size: clamp(1.5rem, 2.3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  max-width: 500px;
  margin: 7px 0 16px;
}
.quote-section {
  background: var(--navy);
  color: #f5f6ef;
}
.quote-layout {
  max-width: 930px;
  text-align: center;
}
.quote-mark {
  font: 4.8rem Georgia;
  color: var(--lime);
  height: 54px;
}
blockquote {
  font-size: clamp(2rem, 3.8vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.quote-by {
  margin-top: 37px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  font-size: 0.75rem;
}
.avatar {
  background: var(--lime);
  color: var(--ink);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 500 0.62rem var(--mono);
}
.faq-section {
  background: #e5ece7;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}
.faq-layout > div > p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 355px;
  color: #526677;
  font-size: 1rem;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 520px;
  margin-top: 14px;
  color: #526677;
  font-size: 0.92rem;
}
.contact-section {
  background: var(--lime);
  padding: 104px 0;
}
.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
}
.contact-layout h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  margin: 19px 0 8px;
}
.contact-layout > div > p:last-child {
  font-size: 1rem;
  max-width: 420px;
}
.contact-email {
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  letter-spacing: -0.06em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.contact-email span {
  margin-left: 16px;
}
.footer {
  padding: 31px 0;
  background: var(--ink);
  color: #edf0e9;
}
.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
}
.footer p {
  color: #a6afba;
}
.footer div {
  display: flex;
  gap: 17px;
}
.footer a:hover {
  text-decoration: underline;
}
@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }
  .nav-links,
  .desktop-only {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    gap: 5px;
    flex-direction: column;
    padding: 10px;
  }
  .hamburger {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }
  .mobile-nav.active {
    display: block;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .mobile-nav-links {
    list-style: none;
    padding: 14px 16px 18px;
    display: grid;
    gap: 7px;
  }
  .mobile-nav-links a {
    display: block;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 700;
  }
  .mobile-nav-links .btn {
    color: var(--ink);
    margin-top: 6px;
  }
  .hero {
    padding-top: 54px;
  }
  .hero-layout,
  .intro-layout,
  .spotlight-layout {
    grid-template-columns: 1fr;
  }
  .hero-layout {
    gap: 50px;
  }
  .hero-art,
  .hero-art img {
    min-height: 370px;
  }
  .client-row {
    height: auto;
    padding: 25px 0;
    display: grid;
    gap: 18px;
  }
  .client-row div {
    gap: 17px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .section {
    padding: 88px 0;
  }
  .intro-layout {
    gap: 38px;
  }
  .intro-visual {
    min-height: 400px;
    max-width: 580px;
    border-radius: 0 70px 70px 70px;
  }
  
  .partnership-points {
    margin-top: 34px;
    gap: 26px 22px;
  }
  .capabilities-list article {
    grid-template-columns: 36px 1fr;
    gap: 15px;
    padding: 27px 0;
  }
  .capabilities-list p {
    grid-column: 2;
  }
  .process-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .process-steps {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }
  .process-steps article,
  .process-steps article:first-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .process-steps article:last-child {
    border-bottom: 0;
  }
  .process-steps h3 {
    margin: 18px 0 8px;
  }
  .spotlight-photo {
    min-height: 370px;
  }
  .spotlight-copy {
    padding: 70px 0;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .project,
  .project-large {
    height: 420px;
  }
  .contact-layout {
    display: block;
  }
  .contact-email {
    display: inline-block;
    margin-top: 35px;
  }
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-layout div {
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 3.25rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-art,
  .hero-art img {
    min-height: 280px;
  }
  .art-caption {
    font-size: 0.52rem;
    left: 22px;
    right: 22px;
  }
  .hero-art-top {
    left: 22px;
    right: 22px;
    font-size: 0.52rem;
  }
  .section-head {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }
  .project,
  .project-large {
    height: 360px;
  }
  .contact-email {
    white-space: normal;
    font-size: 1.3rem;
  }
  .client-row div b {
    font-size: 0.68rem;
  }
}

/* Product-launch hero */
.navbar {
  background: #050507;
  border-color: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.navbar .logo-mark {
  background: linear-gradient(135deg, #ff8160, #933ec7);
  color: #fff;
}
.navbar .nav-links a {
  color: rgba(255, 255, 255, 0.68);
}
.navbar .nav-links a.active,
.navbar .nav-links a:hover {
  color: #fff;
}
.navbar .btn-primary {
  background: linear-gradient(100deg, #f16d43, #9a48b8);
  color: #fff;
}
.hero {
  min-height: 780px;
  padding: 0;
  background: radial-gradient(
    circle at 50% 62%,
    #321021 0%,
    #100613 40%,
    #050507 78%
  );
  position: relative;
}
.hero-layout {
  min-height: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.hero-copy {
  padding: 106px 20px 52px;
  max-width: 1120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-product {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.hero-product small {
  align-self: flex-end;
  margin: 0 0 3px -5px;
  font-size: 0.47rem;
  letter-spacing: 0;
  font-weight: 500;
  color: #aeb0bb;
}
.hero-product-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #e46c9c;
  color: #fd9274;
  transform: rotate(-12deg);
  font:
    italic 1.15rem Georgia,
    serif;
}
.hero h1 {
  max-width: 1040px;
  margin: 50px auto 24px;
  font-size: clamp(3.1rem, 5.1vw, 5.3rem);
  line-height: 1.07;
  letter-spacing: -0.065em;
  color: #fff;
}
.hero h1 em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(90deg, #8c43e9, #dc5b86, #fc7d49);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-intro {
  max-width: 800px;
  font-size: 1rem;
  color: #d0ccd5;
}
.hero-actions {
  margin-top: 33px;
  gap: 16px;
}
.hero .btn {
  min-width: 162px;
  min-height: 46px;
  border-radius: 5px;
}
.hero-secondary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(211, 176, 235, 0.5);
  color: #fff;
}
.hero-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}
.hero-art {
  width: min(900px, calc(100% - 48px));
  min-height: 0;
  height: 300px;
  margin-top: 6px;
  padding: 0;
  background: transparent;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 48px rgba(190, 89, 228, 0.32);
  overflow: hidden;
  align-self: auto;
}
.hero-art:before {
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(154, 60, 193, 0.11),
    transparent 35%
  );
  z-index: 1;
}
.hero-art img {
  min-height: 0;
  height: auto;
  opacity: 1;
  mix-blend-mode: normal;
  object-position: center 19%;
}
.hero-outline {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.055);
  border-radius: 33px;
  pointer-events: none;
}
.hero-outline-one {
  width: 760px;
  height: 340px;
  left: calc(50% - 380px);
  bottom: 48px;
}
.hero-outline-two {
  width: 1040px;
  height: 450px;
  left: calc(50% - 520px);
  bottom: -126px;
  border-radius: 47px;
}
@media (max-width: 800px) {
  .navbar {
    height: 70px;
  }
  .navbar .hamburger {
    background: #fff;
  }
  .mobile-nav.active {
    background: #09070b;
    border-color: rgba(255, 255, 255, 0.1);
  }
  .mobile-nav-links a {
    color: #fff;
  }
  .hero {
    min-height: 690px;
  }
  .hero-layout {
    min-height: 690px;
  }
  .hero-copy {
    padding-top: 70px;
  }
  .hero h1 {
    margin-top: 38px;
  }
  .hero-art {
    height: 245px;
  }
  .hero-outline-one {
    width: 640px;
    left: calc(50% - 320px);
    height: 260px;
  }
  .hero-outline-two {
    width: 800px;
    left: calc(50% - 400px);
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 640px;
  }
  .hero-layout {
    min-height: 640px;
  }
  .hero-copy {
    padding: 48px 12px 38px;
  }
  .hero-product {
    font-size: 1.2rem;
  }
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.05;
    margin: 30px auto 18px;
  }
  .hero-intro {
    font-size: 0.92rem;
  }
  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
  }
  .hero .btn {
    width: min(220px, 100%);
    min-width: 0;
    padding: 12px 8px;
    font-size: 0.73rem;
  }
  .hero-art {
    width: calc(100% - 32px);
    height: 195px;
    border-radius: 14px 14px 0 0;
  }
  .hero-outline-one {
    width: 440px;
    left: calc(50% - 220px);
    bottom: 40px;
  }
  .hero-outline-two {
    display: none;
  }
}

/* Nievostack brand system */
:root {
  --emerald: #059669;
  --mint: #10b981;
  --deep-teal: #047857;
  --charcoal: #0f172a;
  --light-gray: #f1f5f9;
}
.logo img {
  width: 144px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.hero-product {
  gap: 10px;
}
.hero-product img {
  width: 162px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.navbar .logo-mark {
  background: var(--emerald);
}
.navbar .btn-primary {
  background: linear-gradient(100deg, var(--emerald), var(--mint));
}
.hero {
  background: radial-gradient(
    circle at 50% 64%,
    #063d37 0%,
    #022821 39%,
    #021512 78%
  );
}
.hero h1 em {
  background: linear-gradient(90deg, #10b981, #51d99d, #b9f7d7);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-product-mark {
  border-color: #10b981;
  color: #8ef0c0;
}
.hero-art {
  box-shadow: 0 -12px 48px rgba(16, 185, 129, 0.28);
}
.hero-art:before {
  background: linear-gradient(
    180deg,
    rgba(16, 185, 129, 0.13),
    transparent 35%
  );
}
.hero-outline {
  border-color: rgba(167, 243, 208, 0.09);
}
.hero-secondary {
  border-color: rgba(167, 243, 208, 0.48);
}
.eyebrow span,
.signal {
  background: var(--mint);
}
.quote-section,
.footer {
  background: #022821;
}
.contact-section {
  background: var(--mint);
}
.avatar {
  background: var(--mint);
}

/* Crop the supplied square logo artwork to its horizontal wordmark for dark navigation and footer. */
.logo {
  width: 154px;
  height: 39px;
  overflow: hidden;
  position: relative;
  display: block;
  flex: none;
}
.logo img {
  position: absolute;
  width: 238px;
  height: 238px;
  max-width: none;
  transform: translate(-35px, -94px);
  filter: brightness(0) invert(1);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
}
.footer-contact a {
  color: #b8d2c6;
}
.footer-contact a:hover {
  text-decoration: underline;
  color: #fff;
}
.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border-radius: 99px;
  background: #25d366;
  color: #042a19;
  font-weight: 800;
  font-size: 0.76rem;
  box-shadow:
    0 11px 30px rgba(0, 0, 0, 0.28),
    0 0 0 8px rgba(37, 211, 102, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    0 0 0 11px rgba(37, 211, 102, 0.2);
}
.whatsapp-float b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #25a956;
  font-size: 1.25rem;
  line-height: 1;
}
@media (max-width: 480px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 11px;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float b {
    width: 34px;
    height: 34px;
  }
}
.footer-brand-column {
  display: grid;
  gap: 17px;
  width: min(100%, 360px);
}
.footer-brand-column > p {
  color: #c5d7d0;
  font-size: 0.82rem;
  line-height: 1.55;
}
.footer-social-icons {
  display: flex;
  gap: 13px;
}
.footer-social-icons a {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}
.footer-social-icons a:hover {
  background: var(--mint);
  color: #033222;
  transform: translateY(-2px);
  border-color: var(--mint);
}
.footer .footer-brand-column {
  display: grid;
  gap: 17px;
  width: min(100%, 360px);
}
.footer .footer-brand-column > p {
  display: block;
  color: #c5d7d0;
  font-size: 0.82rem;
  line-height: 1.55;
}
.footer .footer-social-icons {
  display: flex;
  gap: 13px;
}
.footer .footer-social-icons a {
  display: grid;
}

.trusted-section {
  background: #f7f6f1;
  border-bottom: 1px solid rgba(7, 23, 39, 0.07);
}
.trusted-row {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.trusted-row > p {
  font-size: 0.82rem;
  font-weight: 800;
}
.trusted-names {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex: 1;
  max-width: 720px;
}
.trusted-names b {
  font-size: clamp(0.82rem, 1.4vw, 1.2rem);
  letter-spacing: -0.06em;
  color: #53605b;
}
.trusted-names b:nth-child(2) {
  font-family: Georgia, serif;
  font-style: italic;
}
.trusted-names b:nth-child(4) {
  font-weight: 500;
}
.home-discovery {
  padding: 88px 0;
  background: var(--paper);
}
.home-discovery-card {
  min-height: 470px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  border-radius: 28px;
  background: radial-gradient(
    circle at 78% 47%,
    #164d43 0%,
    #092d28 42%,
    #041a18 82%
  );
  color: #fff;
}
.home-discovery-copy {
  padding: 65px clamp(34px, 6vw, 94px);
  align-self: center;
  position: relative;
  z-index: 1;
}
.home-discovery-copy .eyebrow {
  justify-content: flex-start;
  color: #b9f7d7;
}
.home-discovery-copy h2 {
  font-size: clamp(2.55rem, 4.2vw, 4.5rem);
  line-height: 1.01;
  letter-spacing: -0.075em;
  margin: 18px 0;
}
.home-discovery-copy h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.home-discovery-copy > p:not(.eyebrow) {
  max-width: 455px;
  color: #c0d7cd;
}
.home-discovery-copy .btn {
  margin-top: 29px;
}
.home-discovery-image {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}
.home-discovery-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 26, 24, 0.72), transparent 48%);
}
.home-discovery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.home-discovery-image span {
  position: absolute;
  z-index: 1;
  right: 23px;
  top: 22px;
  padding: 8px 11px;
  border-radius: 99px;
  background: rgba(4, 26, 24, 0.82);
  border: 1px solid rgba(185, 247, 215, 0.25);
  font: 500 0.61rem var(--mono);
  text-transform: uppercase;
  color: #d3f8e3;
}
@media (max-width: 760px) {
  .trusted-row {
    min-height: auto;
    padding: 28px 0;
    display: grid;
    gap: 18px;
  }
  .trusted-names {
    width: 100%;
    max-width: none;
    gap: 15px;
    flex-wrap: wrap;
  }
  .home-discovery {
    padding: 70px 0;
  }
  .home-discovery-card {
    grid-template-columns: 1fr;
  }
  .home-discovery-copy {
    padding: 50px 28px;
  }
  .home-discovery-image {
    height: 290px;
  }
  .home-discovery-image:after {
    background: linear-gradient(180deg, rgba(4, 26, 24, 0.25), transparent 45%);
  }
}
.whatsapp-widget {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 12px;
}
.whatsapp-widget-message {
  position: relative;
  width: 215px;
  padding: 14px 32px 14px 16px;
  border-radius: 13px;
  background: #fff;
  color: #264237;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 3px;
  font-size: 0.68rem;
}
.whatsapp-widget-message:after {
  content: "";
  position: absolute;
  right: 21px;
  bottom: -8px;
  border-width: 9px 0 0 11px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}
.whatsapp-widget-message strong {
  color: var(--teal);
  font-size: 0.73rem;
}
.whatsapp-widget-message span {
  color: #5b7068;
  line-height: 1.4;
}
.whatsapp-widget-close {
  position: absolute;
  right: -7px;
  top: -8px;
  width: 19px;
  height: 19px;
  border: 0;
  border-radius: 50%;
  background: #dce2e1;
  color: #51635e;
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
}
.whatsapp-widget .whatsapp-float {
  position: static;
  width: 57px;
  height: 57px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #49dc81, #119f54);
  color: #fff;
  box-shadow:
    0 10px 27px rgba(0, 0, 0, 0.3),
    0 0 0 8px rgba(37, 211, 102, 0.16);
}
.whatsapp-widget .whatsapp-float b {
  width: 32px;
  height: 32px;
  background: transparent;
  color: #fff;
  font-size: 1.7rem;
}
.whatsapp-widget .whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 15px 32px rgba(0, 0, 0, 0.34),
    0 0 0 10px rgba(37, 211, 102, 0.2);
}
@media (max-width: 480px) {
  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-widget-message {
    width: 200px;
  }
  .whatsapp-widget .whatsapp-float {
    width: 53px;
    height: 53px;
  }
}
