*, ::before, ::after { box-sizing: border-box; border: 0 solid hsl(42 35% 67% / .15); }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-size: inherit; font-weight: inherit; }
button { font: inherit; color: inherit; background: none; padding: 0; cursor: pointer; border: none; }
a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; }
img { max-width: 100%; height: auto; }

body {
  background-color: #000;
  color: hsl(39 18% 85%);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-heading { color: hsl(42, 28%, 93%); }
.text-body { color: hsl(39, 18%, 85%); }
.text-muted-warm { color: hsl(42, 9%, 44%); }
.text-brand { color: hsl(249, 35%, 64%); }
.text-sand { color: hsl(42, 35%, 67%); }
.bg-deep { background-color: hsl(220, 43%, 3%); }
.bg-mid { background-color: hsl(225, 40%, 7%); }

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y, 20px));
  transition: opacity var(--reveal-duration, .6s) var(--reveal-ease, ease-in-out) var(--reveal-delay, 0s),
              transform var(--reveal-duration, .6s) var(--reveal-ease, ease-in-out) var(--reveal-delay, 0s);
}
.is-visible .reveal { opacity: 1; transform: none; }

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .caustic-wrap {
  position: absolute;
  inset: 0;
}

#hero .caustic-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#hero header {
  position: relative;
  z-index: 10;
  text-align: center;
}

#hero h1 {
  font-weight: 300;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: clamp(1.8rem, 6vw, 6rem);
  letter-spacing: 0.2em;
  line-height: 1.1;
}
@media (min-width: 768px) {
  #hero h1 { gap: 1rem; }
}

#hero h1 img { height: 1.2em; width: auto; }

#hero .tagline {
  text-transform: uppercase;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}

#hero .tagline-sub {
  text-transform: uppercase;
  margin-top: .5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}

#story {
  position: relative;
  z-index: 1;
}

#story > div {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  #story > div { padding: 8rem 0; }
}

.statement {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

.statement p {
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.statement:nth-child(1) p { transition-delay: 0s; }
.statement:nth-child(2) p { transition-delay: .05s; }
.statement:nth-child(3) p { transition-delay: .1s; }
.statement:nth-child(4) p { transition-delay: .15s; }
.statement:nth-child(5) p { transition-delay: .2s; }

.statement.is-visible p { opacity: 1; transform: none; }
.statement.is-dim p { opacity: 0.15; transform: none; }

#water-surface {
  position: relative;
  width: 100%;
  height: 56vh;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

#water-surface canvas {
  position: absolute;
  inset: 0;
}

#turn {
  position: relative;
  z-index: 1;
}

#turn > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8vh 1.5rem 6rem;
}
@media (min-width: 768px) {
  #turn > div { padding-bottom: 8rem; }
}

#turn h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
}

#now-we-surface .reveal {
  --reveal-y: 40px;
  --reveal-duration: .8s;
  --reveal-ease: ease-out;
  --reveal-delay: .12s;
}

#turn .turn-body {
  margin-top: 8vh;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#turn .turn-body p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.75;
}

#turn .turn-body .reveal:nth-child(1) { --reveal-y: 30px; --reveal-duration: .8s; --reveal-ease: ease-out; --reveal-delay: 0s; }
#turn .turn-body .reveal:nth-child(2) { --reveal-y: 30px; --reveal-duration: .8s; --reveal-ease: ease-out; --reveal-delay: .15s; }
#turn .turn-body .reveal:nth-child(3) { --reveal-y: 30px; --reveal-duration: .8s; --reveal-ease: ease-out; --reveal-delay: .3s; }

#approach {
  position: relative;
  z-index: 1;
  background-color: #06090f;
}

#approach > div {
  padding: 8rem 0;
}
@media (min-width: 768px) {
  #approach > div { padding: 12rem 0; }
}

.intro-line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8rem;
}

.intro-line p {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #e0dbd2;
}

.intro-line .reveal { --reveal-y: 30px; --reveal-duration: .8s; --reveal-ease: ease-out; }

.services-col {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.service-block .reveal { --reveal-y: 40px; --reveal-duration: .8s; --reveal-ease: ease-out; }

.service-inner {
  width: 100%;
  padding: 0 1.5rem;
  max-width: 900px;
}

.service-inner .svc-num {
  color: #c8b891;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
}

.service-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #f2efe8;
  margin-top: 0.75rem;
}

.service-inner .svc-divider {
  width: 60px;
  height: 1px;
  background-color: rgba(200, 184, 145, 0.12);
  margin: 1.5rem 0;
}

.service-inner .svc-text {
  max-width: 650px;
}

.service-inner .svc-text p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: #e0dbd2;
  margin-bottom: 1.5rem;
}
.service-inner .svc-text p:last-child { margin-bottom: 0; }

#principles {
  position: relative;
  z-index: 1;
}

#principles > div {
  max-width: 700px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  #principles > div { padding: 10rem 1.5rem; }
}

#principles .head-text {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.principles-head .reveal { --reveal-y: 30px; --reveal-duration: .8s; --reveal-ease: ease-out; }

#principles .principles-list {
  margin-top: 6rem;
  text-align: left;
}
@media (min-width: 768px) {
  #principles .principles-list { margin-top: 8rem; }
}

#principles .principles-list > * + * { margin-top: 2.5rem; }

#principles .principle-item {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

.principle-name { font-weight: 600; }

.principle-item .bullet { margin-right: .5rem; }

.principles-list .reveal:nth-child(1) { --reveal-y: 20px; --reveal-duration: .6s; --reveal-ease: ease-out; --reveal-delay: 0s; }
.principles-list .reveal:nth-child(2) { --reveal-y: 20px; --reveal-duration: .6s; --reveal-ease: ease-out; --reveal-delay: .1s; }
.principles-list .reveal:nth-child(3) { --reveal-y: 20px; --reveal-duration: .6s; --reveal-ease: ease-out; --reveal-delay: .2s; }
.principles-list .reveal:nth-child(4) { --reveal-y: 20px; --reveal-duration: .6s; --reveal-ease: ease-out; --reveal-delay: .3s; }

#insights {
  position: relative;
  z-index: 1;
}

#insights > div {
  max-width: 700px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  #insights > div { padding: 10rem 1.5rem; }
}

.news-label {
  text-transform: uppercase;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.news-label.reveal { --reveal-duration: .6s; --reveal-y: 20px; }

.carousel-wrap {
  margin-top: 3rem;
}

.carousel-wrap.reveal { --reveal-duration: .8s; --reveal-delay: .15s; --reveal-y: 30px; }

.card-area {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.card-slide {
  cursor: pointer;
}

.card-slide .card-date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.card-slide h3 {
  margin-top: .75rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  transition: color .3s;
}

.card-slide:hover h3 { color: hsl(249, 35%, 64%); }

.card-slide .card-summary {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
}

.card-slide .card-more {
  display: inline-block;
  margin-top: 1.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: transform .2s;
}

.card-slide:hover .card-more { transform: translateX(.25rem); }

.card-slide-anim {
  transition: transform .35s ease-in-out, opacity .35s ease-in-out;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.carousel-nav button.arrow-btn {
  transition: color .2s;
}
.carousel-nav button.arrow-btn:hover { color: hsl(42, 28%, 93%); }
.carousel-nav button.arrow-btn:disabled { opacity: 0.2; }

.carousel-dots {
  display: flex;
  gap: .5rem;
}

.carousel-dots button {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: hsl(42, 9%, 44%);
  transition: all .3s;
}

.carousel-dots button.is-active {
  width: 24px;
  background: hsl(249, 35%, 64%);
}

#backed {
  position: relative;
  z-index: 1;
}

#backed > div {
  max-width: 600px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  #backed > div { padding: 10rem 1.5rem; }
}

.backed-trigger .reveal:nth-child(1) { --reveal-duration: .6s; --reveal-delay: 0s; }
.backed-trigger .reveal:nth-child(2) { --reveal-duration: .6s; --reveal-delay: .1s; }
.backed-trigger .reveal:nth-child(3) { --reveal-duration: .6s; --reveal-delay: .2s; }

.backed-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
}

.backed-name {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

.backed-desc {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

#contact {
  position: relative;
  z-index: 1;
}

.cta-trigger {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.cta-trigger .reveal:nth-child(1) { --reveal-y: 30px; --reveal-duration: .8s; --reveal-delay: 0s; }
.cta-trigger .reveal:nth-child(2) { --reveal-y: 20px; --reveal-duration: .8s; --reveal-delay: .1s; }
.cta-trigger .reveal:nth-child(3) { --reveal-y: 20px; --reveal-duration: .8s; --reveal-delay: .2s; }
.cta-trigger .reveal:nth-child(4) { --reveal-y: 20px; --reveal-duration: .8s; --reveal-delay: .3s; }

.cta-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
}

.cta-sub {
  margin-top: 1.5rem;
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

.cta-email {
  margin-top: 3rem;
  border: 1px solid hsl(42 35% 67% / .4);
  border-radius: 9999px;
  padding: .75rem 2.5rem;
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  transition: background-color .2s;
}
.cta-email:hover { background-color: hsl(42 35% 67% / .1); }

.cta-socials {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-socials a {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: color .2s;
}
.cta-socials a:hover { color: hsl(42, 35%, 67%); }

footer {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(200, 184, 145, 0.08);
}
@media (min-width: 768px) {
  footer { padding: 4rem 3rem; }
}

footer .footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  footer .footer-inner { flex-direction: row; }
}

footer .footer-brand {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

footer .footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

footer .footer-links a {
  font-size: 0.75rem;
  transition: color .2s;
}
footer .footer-links a:hover { color: hsl(39, 18%, 85%); }

footer .footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .footer-right a {
  transition: color .2s;
}
footer .footer-right a:hover { color: hsl(39, 18%, 85%); }

footer .footer-copy {
  font-size: 0.7rem;
}

footer .footer-disclaimer {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.65rem;
  opacity: 0.6;
  line-height: 1.6;
}

nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
@media (min-width: 768px) {
  nav#navbar { padding: 0 3rem; }
}

nav#navbar.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.nav-logo img {
  display: none;
  height: 2.5rem;
  width: auto;
}
@media (min-width: 768px) {
  .nav-logo img { display: block; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color .2s;
}
.nav-links a:hover { color: hsl(39, 18%, 85%); }

.nav-toggle {
  display: block;
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.nav-toggle img { height: 2rem; width: auto; }
.nav-toggle svg { display: none; }
#navbar.menu-open .nav-toggle img { display: none; }
#navbar.menu-open .nav-toggle svg { display: block; }

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

#mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

#mobile-menu a {
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#scroll-arrow {
  position: fixed;
  bottom: 22vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  opacity: 0;
  transition: opacity .3s;
}

#scroll-arrow.is-visible { opacity: 1; }

@keyframes arrow-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

#scroll-arrow button {
  padding: .5rem;
  animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(var(--rise-y, 20px)); }
  to { opacity: 1; transform: none; }
}

.insight-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) {
  .insight-container { padding: 8rem 1.5rem; }
}

.insight-back {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
  transition: color .2s;
  --rise-y: 0px;
  animation: rise .4s ease-in-out both;
}
.insight-back:hover { color: hsl(42, 28%, 93%); }

.insight-date {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  animation: rise .5s ease-in-out both;
}

.insight-title {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  --rise-y: 30px;
  animation: rise .6s ease-in-out .1s both;
}

.insight-content {
  margin-top: 3rem;
  animation: rise .6s ease-in-out .25s both;
}
.insight-content > * + * { margin-top: 1.5rem; }

.insight-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
}

.insight-content p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.85;
}

.insight-not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
