﻿:root {
  --color-black: #000000;
  --color-surface: #000000;
  --color-surface-2: #000000;
  --color-gold: #b59064;
  --color-gold-soft: #b59064;
  --color-gold-faint: rgba(181, 144, 100, 0.12);
  --color-white: #ffffff;
  --color-bone: #ffffff;
  --color-mute: rgba(255, 255, 255, 0.80);
  --color-mute-2: rgba(255, 255, 255, 0.60);
  --color-line: rgba(255, 255, 255, 0.08);
  --font-display: "Montserrat", sans-serif;
  --max-width: 1440px;
  --pad-x: clamp(24px, 5vw, 80px);
  --section-y: clamp(80px, 12vh, 140px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--color-black);
  color: var(--color-bone);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--color-gold); color: var(--color-black); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----- Background grain ----- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ----- Layout primitives ----- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

/* The signature gold accent line from the brand book */
.section-mark {
  position: relative;
  padding-left: 24px;
}
.section-mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--color-gold);
}
.section-mark::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--color-gold);
  background: var(--color-black);
}
.section-mark .mark-end {
  position: absolute;
  left: -4px;
  bottom: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--color-gold);
  background: var(--color-black);
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.3s var(--ease);
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark { width: 122px; height: auto; }
.brand-mark svg, .brand-mark img { width: 100%; height: auto; object-fit: contain; display: block; }

.brand-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.brand-text small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-mute);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--color-bone); }
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease);
  background: transparent;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}

.btn:hover { color: var(--color-black); }
.btn:hover::before { transform: translateY(0); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--solid {
  background: var(--color-gold);
  color: var(--color-black);
}
.btn--solid::before { background: var(--color-bone); }
.btn--solid:hover { color: var(--color-black); }

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-bone);
}
.btn--ghost::before { background: var(--color-bone); }
.btn--ghost:hover { color: var(--color-black); }

.nav-cta {
  padding: 11px 22px;
  font-size: 11px;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background-image is set inline from the Home > Hero > Background image setting */
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) contrast(1.05) brightness(0.42);
  opacity: 0.42;
}
.hero-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.55) 100%),
    radial-gradient(circle at 80% 50%, rgba(181,144,100,0.10), transparent 60%);
}
.hero-visual { position: relative; z-index: 3; }
.hero-visual-frame { background: rgba(0,0,0,0.55); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }

.hero-bg-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 60vw;
  max-width: 900px;
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image:
    linear-gradient(to right, var(--color-line) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  max-width: 100%;
  display: inline-grid;
  grid-template-columns: min-content;
  justify-items: start;
  text-align: left;
}

.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}

.hero-title {
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 28px;
  text-align: left;
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s var(--ease) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .word:nth-child(2) { animation-delay: 0.45s; }
.hero-title .word:nth-child(3) { animation-delay: 0.6s; color: var(--color-gold); }

.hero-title .accent {
  position: relative;
  display: inline-block;
}

.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 0;
  height: 6px;
  background: var(--color-gold);
  opacity: 0.25;
  animation: drawLine 1.2s var(--ease) 1.4s forwards;
}

@keyframes drawLine { to { width: 100%; } }

.hero-lede {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  width: 100%;
  margin-bottom: 44px;
  font-weight: 400;
  text-align: left;
  white-space: normal;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.85s forwards;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  width: 100%;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}

.hero-cta .btn {
  width: 100%;
  justify-content: center;
}

.hero-meta {
  display: flex;
  gap: 60px;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.15s forwards;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-meta-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-meta-num span {
  color: var(--color-gold);
}

.hero-meta-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mute-2);
  font-weight: 500;
}

/* Hero visual: animated bar chart that echoes the logo's graph icon */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  max-width: 520px;
  margin-left: auto;
  opacity: 0;
  animation: fadeIn 1.4s var(--ease) 0.7s forwards;
}

.hero-visual-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-line);
  background: linear-gradient(135deg, rgba(181, 144, 100, 0.04) 0%, transparent 60%);
}

.hero-visual-frame::before,
.hero-visual-frame::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-gold);
}
.hero-visual-frame::before { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.hero-visual-frame::after { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }

.hero-visual-label {
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.hero-visual-label-text {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-mute-2);
  font-weight: 600;
}

.hero-visual-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  position: relative;
}

.hero-visual-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-chart {
  position: absolute;
  inset: 60px 24px 60px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4%;
}

.hero-bar {
  flex: 1;
  background: linear-gradient(to top, var(--color-gold) 0%, var(--color-gold-soft) 100%);
  position: relative;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: barRise 1.4s var(--ease) forwards;
}
.hero-bar:nth-child(1) { animation-delay: 1.0s; height: 22%; }
.hero-bar:nth-child(2) { animation-delay: 1.1s; height: 35%; }
.hero-bar:nth-child(3) { animation-delay: 1.2s; height: 48%; }
.hero-bar:nth-child(4) { animation-delay: 1.3s; height: 41%; }
.hero-bar:nth-child(5) { animation-delay: 1.4s; height: 62%; }
.hero-bar:nth-child(6) { animation-delay: 1.5s; height: 73%; }
.hero-bar:nth-child(7) { animation-delay: 1.6s; height: 88%; }
.hero-bar:nth-child(8) { animation-delay: 1.7s; height: 100%; }

@keyframes barRise { to { transform: scaleY(1); } }

.hero-bar:last-child::after {
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid var(--color-gold);
  opacity: 0;
  animation: arrowAppear 0.6s var(--ease) 2.3s forwards;
}

.hero-bar:last-child::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 22px;
  background: var(--color-gold);
  opacity: 0;
  animation: arrowAppear 0.6s var(--ease) 2.3s forwards;
}

@keyframes arrowAppear { to { opacity: 1; } }

.hero-visual-coords {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--color-mute-2);
  font-family: var(--font-display);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-mute-2);
  z-index: 5;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 2s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--color-gold);
  animation: scrollDot 2.4s var(--ease) infinite;
}

@keyframes scrollDot {
  0% { top: -40px; }
  100% { top: 100%; }
}

/* ----- Industries strip ----- */
.trusted {
  padding: 80px 0 100px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-surface);
  position: relative;
  z-index: 5;
}

.trusted-head {
  margin-bottom: 56px;
}

.trusted-headline {
  width: 100%;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.trusted-headline em { color: var(--color-gold); font-style: normal; }

.industry-carousel {
  position: relative;
}
.industry-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.industry-grid::-webkit-scrollbar { display: none; }

.industry-tile {
  position: relative;
  flex: 0 0 calc((100% - 14px * 5) / 6);
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface-2);
  cursor: pointer;
}

.industry-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--color-gold);
  color: var(--color-bone);
  cursor: pointer;
  z-index: 3;
  font-size: 20px;
  line-height: 1;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.industry-nav:hover { background: var(--color-gold); color: var(--color-ink); }
.industry-nav.prev { left: -22px; }
.industry-nav.next { right: -22px; }
@media (max-width: 900px) {
  .industry-nav.prev { left: 8px; }
  .industry-nav.next { right: 8px; }
}
.industry-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) brightness(0.55) contrast(1.05);
  transition: filter 0.7s var(--ease), transform 1.2s var(--ease);
}
.industry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(181,144,100,0.08) 100%);
}
.industry-tile:hover img {
  filter: grayscale(0.2) brightness(0.85) contrast(1.05);
  transform: scale(1.05);
}
.industry-tile-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bone);
}
.industry-tile-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .industry-tile { flex: 0 0 calc((100% - 14px * 2) / 3); }
}
@media (max-width: 480px) {
  .industry-tile { flex: 0 0 calc((100% - 14px) / 2); }
}

/* ----- Value preview section ----- */
.value {
  padding: var(--section-y) 0;
  position: relative;
  z-index: 5;
}

.value-header {
  max-width: 100%;
  width: 100%;
  margin-bottom: 80px;
}

.value-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-top: 24px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.value-title em {
  font-style: normal;
  color: var(--color-gold);
}

.value-lede {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-mute);
  font-weight: 400;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-line);
}

.value-card {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--color-line);
  position: relative;
  transition: background 0.4s var(--ease);
}

.value-card:last-child { border-right: none; padding-right: 0; }
.value-card:not(:first-child) { padding-left: 40px; }

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.6s var(--ease);
}

.value-card:hover::before { width: 100%; }

.value-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.value-num::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-mute);
}

.value-card-btn {
  margin-top: 24px;
}

/* ----- Footer hint ----- */
.home-cta {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--color-line);
  background: linear-gradient(to bottom, var(--color-black), var(--color-surface) 60%, var(--color-black));
  position: relative;
  z-index: 5;
}
.home-cta-mark { margin-bottom: 28px; }
.home-cta-title {
  max-width: 900px;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-wrap: balance;
  margin-bottom: 40px;
}
.home-cta-title em { font-style: normal; color: var(--color-gold); }

.footer-hint {
  padding: 40px 0;
  border-top: 1px solid var(--color-line);
  background: var(--color-black);
  position: relative;
  z-index: 5;
}

.footer-hint-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-mute-2);
  font-weight: 500;
}

.footer-hint a { color: var(--color-gold); transition: color 0.3s var(--ease); }
.footer-hint a:hover { color: var(--color-bone); }

/* ----- Animations ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid var(--color-line); padding: 36px 0; }
  .value-card:not(:first-child) { padding-left: 0; }
  .value-card:last-child { border-bottom: none; }
  .trusted-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 1100px) {
  .hero-content {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    white-space: normal;
    text-wrap: balance;
    word-break: break-word;
    font-size: clamp(32px, 6vw, 56px);
  }
  .hero-lede {
    white-space: normal;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(28px, 8vw, 44px); margin-bottom: 20px; }
  .hero-lede { font-size: 15px; margin-bottom: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 40px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .btn { justify-content: center; }
  .footer-hint-inner { flex-direction: column; gap: 12px; text-align: center; }
}
