@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700&family=Newsreader:ital@1&display=swap");
:root {
  --ink: #121315;
  --ivory: #f4f1ea;
  --cel: #d5e0d9;
  --green: #315d49;
  --deep: #173a2b;
  --gold: #a58a55;
  --line: #12131524;
  --muted: #666a69;
  --sans: "Inter Tight", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(1320px, calc(100% - 48px));
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
.shell {
  width: var(--page);
  margin: auto;
}
.display {
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.display em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--green);
}
.eye {
  font: 500 9px var(--mono);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--green);
}
.btn {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 100px;
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #0002;
}
.btn.dark {
  background: var(--ink);
  color: #fff;
}
.btn.light {
  background: var(--cel);
  color: var(--ink);
}
.nav {
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0 max(24px, calc((100% - 1320px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4f1eaf2;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo > b {
  font-size: 18px;
  letter-spacing: -0.05em;
}
.logo > em {
  font: italic 19px var(--serif);
  color: var(--green);
}
.navlinks {
  display: flex;
  gap: 5px;
  font: 500 8px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.navlinks a {
  padding: 9px 11px;
  border-radius: 100px;
  transition:
    background 0.2s,
    color 0.2s;
}
.navlinks a:hover {
  color: var(--green);
  background: #315d490c;
}
.menu,
.mobile-menu {
  display: none;
}
.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  background: var(--ink);
  color: #fff;
}
.hero-copy {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 125px) clamp(34px, 7vw, 106px);
  overflow: hidden;
}
.hero-copy > *:not(.orbits) {
  position: relative;
  z-index: 2;
}
.hero .eye {
  color: var(--cel);
  margin-bottom: 23px;
}
.hero h1 {
  font-size: clamp(58px, 7vw, 104px);
  max-width: 10ch;
}
.hero h1 em {
  color: #b9d0c2;
}
.lede {
  max-width: 580px;
  color: #ffffffb3;
  font-size: 16px;
  line-height: 1.75;
  margin-top: 27px;
}
.actions {
  display: flex;
  gap: 9px;
  margin-top: 30px;
}
.proof {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  color: #ffffff73;
  font: 8px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-media img {
  height: 100%;
  object-fit: cover;
}
.hero-media small {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 9px 12px;
  border-radius: 100px;
  background: #121315c7;
  font: 7px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.orbits {
  position: absolute;
  left: -10vw;
  top: 50%;
  width: 62vw;
  height: 62vw;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.92;
}
.orbits i,
.orbits span {
  position: absolute;
  inset: 0;
  border: 1px solid #b9d0c278;
  border-radius: 50%;
  box-shadow:
    0 0 72px #6f9f8630,
    inset 0 0 72px #b9d0c20d;
  animation: watchOrbitPulse 5.8s ease-in-out infinite;
}
.orbits i:first-child {
  background:
    radial-gradient(circle at 58% 42%, #75a58c20 0, transparent 48%),
    conic-gradient(
      from 100deg,
      transparent,
      #8fb8a130,
      transparent 42%,
      #335f4933,
      transparent 73%
    );
}
.orbits i:nth-child(2) {
  inset: 14%;
  animation-delay: -1.45s;
  background: radial-gradient(circle, #b9d0c20d, transparent 67%);
}
.orbits i:nth-child(3) {
  inset: 28%;
  animation-delay: -2.9s;
  border-color: #d5e0d99c;
}
.orbits span {
  inset: 41%;
  border: 0;
  background: radial-gradient(
    circle at 35% 30%,
    #d5e0d966,
    #315d4948 42%,
    transparent 72%
  );
  filter: blur(2px);
  animation-delay: -4.35s;
}
@keyframes watchOrbitPulse {
  0%,
  100% {
    transform: scale(0.96) rotate(0);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.08) rotate(9deg);
    opacity: 1;
  }
}
.ticker {
  overflow: hidden;
  background: var(--green);
  color: #fff;
}
.ticker > div {
  display: flex;
  width: max-content;
  padding: 13px 0;
  animation: ticker 30s linear infinite;
}
.ticker span {
  margin-right: 35px;
  font: 8px var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: 110px 0;
}
.head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 52px;
}
.head h2,
.brands h2,
.split h2 {
  font-size: clamp(46px, 5.7vw, 78px);
  margin-top: 14px;
}
.head > p,
.muted {
  color: var(--muted);
  line-height: 1.75;
}
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.three article {
  min-height: 235px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.three article:last-child {
  border: 0;
}
.three b {
  font: 9px var(--mono);
  color: var(--gold);
}
.three h3 {
  font-size: 28px;
  margin-top: 55px;
}
.three p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}
.brands {
  padding: 100px 0;
  background: var(--deep);
  color: #fff;
}
.brands .eye {
  color: #b9d0c2;
}
.brands h2 em {
  color: #b9d0c2;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 40px;
}
.pills span {
  padding: 11px 15px;
  border: 1px solid #ffffff35;
  font: 8px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pills span:first-child {
  background: #b9d0c2;
  color: var(--deep);
}
.micro {
  margin-top: 20px;
  color: var(--muted);
  font: 8px/1.8 var(--mono);
  max-width: 110ch;
}
.brands .micro {
  color: #ffffff75;
}
.real {
  background: #e7e0d4;
}
.watchgrid,
.sourcegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.watchgrid figure,
.sourcegrid figure {
  height: 570px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #cad2cd;
}
.watchgrid img,
.sourcegrid img {
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.watchgrid figure:hover img,
.sourcegrid figure:hover img {
  transform: scale(1.02);
}
.five-products {
  grid-template-columns: repeat(6, 1fr);
}
.five-products figure {
  grid-column: span 2;
}
.five-products figure:nth-child(4) {
  grid-column: 2 / span 2;
}
.five-products figure:nth-child(5) {
  grid-column: 4 / span 2;
}
figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 90px 22px 22px;
  background: linear-gradient(transparent, #0a0d0bee);
  color: #fff;
}
figcaption span,
figcaption small {
  display: block;
  font: 7px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
figcaption span {
  color: #b9d0c2;
}
figcaption strong {
  display: block;
  font: italic 28px var(--serif);
  margin: 6px 0;
}
.credits {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.credits summary {
  cursor: pointer;
  font: 8px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.credits p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}
.workflow {
  background: #fff;
}
.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 9vw;
}
.accordion {
  display: grid;
  gap: 9px;
}
.accordion details {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff5c;
}
.accordion summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  font-size: 20px;
}
.accordion summary b {
  font: 9px var(--mono);
  color: var(--gold);
}
.accordion summary small {
  font: 8px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
}
.accordion details > p {
  padding: 0 20px 22px 88px;
  color: var(--muted);
  max-width: 70ch;
}
.market {
  background: var(--cel);
}
.checks {
  list-style: none;
  margin-top: 25px;
  border-top: 1px solid var(--line);
}
.checks li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font: 8px var(--mono);
  text-transform: uppercase;
}
.file {
  background: var(--ink);
  color: #fff;
  align-self: start;
  border-radius: 24px;
  overflow: hidden;
}
.file summary {
  cursor: pointer;
  padding: 27px 30px;
  border-bottom: 1px solid #ffffff24;
}
.file summary span,
.file summary b {
  display: block;
}
.file summary span {
  font: 8px var(--mono);
  color: var(--cel);
  text-transform: uppercase;
}
.file summary b {
  font-size: 26px;
  margin-top: 5px;
}
.file ol {
  padding: 12px 30px 25px;
  list-style-position: inside;
}
.file li {
  padding: 10px 0;
  border-bottom: 1px solid #ffffff1f;
  color: #ffffffbd;
  font-size: 13px;
}
.sourcegrid figcaption {
  font: italic 27px var(--serif);
}
.sources .micro {
  margin-top: 18px;
}
.enquire {
  background: var(--green);
  color: #fff;
}
.enquire .eye {
  color: #b9d0c2;
}
.enquire h2 em {
  color: #c4d9cd;
}
.enquire .split > div > p:not(.eye) {
  margin-top: 22px;
  color: #ffffffa6;
}
.direct-email {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ffffff8a;
  font: 500 11px var(--mono);
  letter-spacing: 0.08em;
}
.watch-form {
  background: var(--ivory);
  color: var(--ink);
  padding: 28px;
  border-radius: 24px;
}
.formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 12px;
}
.watch-form label {
  display: grid;
  gap: 6px;
  font: 8px var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.watch-form label.full {
  grid-column: 1/-1;
}
.watch-form input,
.watch-form select,
.watch-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font: 13px var(--sans);
}
.formactions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.watch-form .micro a {
  text-decoration: underline;
}
.faq {
  background: #fff;
}
.faq .accordion summary {
  grid-template-columns: 1fr;
  font-size: 18px;
  padding-right: 70px;
  position: relative;
}
.faq .accordion summary:after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #315d4938;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--green);
  font: 26px var(--serif);
}
.faq .accordion details[open] summary:after {
  content: "–";
}
.faq .accordion details > p {
  padding: 0 20px 22px;
}
footer {
  padding: 48px 0;
  background: #101112;
  color: #fff;
}
.foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: end;
}
.foot p {
  max-width: 75ch;
  margin-top: 18px;
  color: #ffffff69;
  font: 8px/1.8 var(--mono);
}
.foot > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font: 8px var(--mono);
  text-transform: uppercase;
  color: #ffffff9c;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (max-width: 900px) {
  :root {
    --page: min(100% - 28px, 1320px);
  }
  .navlinks,
  .navcta {
    display: none;
  }
  .menu {
    display: block;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: none;
    font-size: 22px;
  }
  .mobile-menu {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    padding: 18px;
    display: grid;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--ivory);
    box-shadow: 0 22px 55px #0002;
    transform: translateY(-140%);
    transition: 0.3s;
    font: 9px var(--mono);
    text-transform: uppercase;
  }
  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 100px;
  }
  .mobile-menu a:hover {
    background: #315d490d;
    color: var(--green);
  }
  .mobile-menu.open {
    transform: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    min-height: 650px;
    padding: 75px 24px;
  }
  .hero-media {
    min-height: 540px;
  }
  .orbits {
    left: -38vw;
    width: 125vw;
    height: 125vw;
  }
  .head,
  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .three {
    grid-template-columns: 1fr;
  }
  .three article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 190px;
  }
  .watchgrid,
  .sourcegrid {
    grid-template-columns: 1fr;
  }
  .watchgrid figure {
    height: 570px;
  }
  .sourcegrid figure {
    height: 500px;
  }
  .foot {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 76px 0;
  }
  .brands {
    padding: 76px 0;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 50px;
  }
  .actions,
  .formactions {
    display: grid;
  }
  .btn {
    width: 100%;
  }
  .proof {
    display: none;
  }
  .hero-media {
    min-height: 480px;
  }
  .watchgrid figure {
    height: 480px;
  }
  .sourcegrid figure {
    height: 430px;
  }
  .accordion summary {
    grid-template-columns: 34px 1fr;
  }
  .accordion summary small {
    display: none;
  }
  .accordion details > p {
    padding-left: 52px;
  }
  .faq .accordion details > p {
    padding-left: 0;
  }
  .formgrid {
    grid-template-columns: 1fr;
  }
  .watch-form label.full {
    grid-column: auto;
  }
  .head h2,
  .brands h2,
  .split h2 {
    font-size: 46px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* v28 desktop resilience, restored wordmark and conversion sections */
.logo-mark {
  width: 23px;
  height: 32px;
  margin-right: 6px;
  color: var(--green);
  flex: 0 0 auto;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
}
.menu {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  position: relative;
}
.menu span {
  position: absolute;
  left: 9px;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: 0.25s;
}
.menu span:first-child {
  top: 14px;
}
.menu span:last-child {
  top: 22px;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s;
}
.js .reveal.show {
  opacity: 1;
  transform: none;
}
.brand-intro {
  max-width: 720px;
  margin-top: 24px;
  color: #ffffffa6;
  line-height: 1.75;
}
.brand-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 42px;
}
.brand-accordion details {
  border: 1px solid #ffffff28;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff05;
}
.brand-accordion summary {
  cursor: pointer;
  list-style: none;
  min-height: 88px;
  padding: 21px 70px 21px 22px;
  position: relative;
}
.brand-accordion summary::-webkit-details-marker {
  display: none;
}
.brand-accordion summary:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid #b9d0c252;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: #b9d0c2;
  font: 27px var(--serif);
}
.brand-accordion details[open] summary:after {
  content: "–";
}
.brand-accordion summary span,
.brand-accordion summary small {
  display: block;
}
.brand-accordion summary span {
  font-size: 25px;
  letter-spacing: -0.03em;
}
.brand-accordion summary small {
  margin-top: 4px;
  color: #b9d0c2;
  font: 7px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand-accordion details > div {
  padding: 0 22px 24px;
  color: #ffffffb3;
  font-size: 13px;
  line-height: 1.65;
}
.brand-accordion details > div p + p {
  margin-top: 9px;
}
.brand-accordion details > div b {
  color: #fff;
}
.clean-products figure {
  background: linear-gradient(145deg, #d5e0d9, #eee9df);
}
.product-stage {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 46px 34px 120px;
}
.clean-products .product-stage img {
  height: auto;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.04);
}
.clean-products figure:hover .product-stage img {
  transform: scale(1.025);
}
.clean-products .scene-product .product-stage {
  padding: 0;
}
.clean-products .scene-product .product-stage img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
  transform: scale(1.04);
}
.clean-products .scene-product:hover .product-stage img {
  transform: scale(1.075);
}
@media (max-width: 900px) {
  .menu {
    display: block;
  }
  .brand-accordion {
    grid-template-columns: 1fr;
  }
  .five-products {
    grid-template-columns: 1fr;
  }
  .five-products figure,
  .five-products figure:nth-child(4),
  .five-products figure:nth-child(5) {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
