:root {
  color-scheme: dark;
  --bg: #071012;
  --bg-2: #0d1719;
  --panel: #121f21;
  --panel-2: #172628;
  --text: #f3f7f2;
  --muted: #aeb9b0;
  --line: rgba(255, 255, 255, 0.12);
  --teal: #3dd6b5;
  --green: #a7e957;
  --amber: #ffbd59;
  --ink: #05090a;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(5, 9, 10, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(61, 214, 181, 0.6);
  border-radius: 7px;
  background: rgba(61, 214, 181, 0.14);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--text);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.language-label {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.language-select {
  min-width: 104px;
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  outline: 0;
  cursor: pointer;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(167, 233, 87, 0.45);
  border-radius: 7px;
  color: var(--green);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 9, 10, 0.96) 0%, rgba(5, 9, 10, 0.84) 34%, rgba(5, 9, 10, 0.22) 72%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 9, 10, 0) 30%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding-top: 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(12, 23, 25, 0.78);
}

.hero-metrics dt {
  color: var(--teal);
  font-size: 1.32rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.section {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
  background: var(--bg);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.72;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.method {
  background: var(--bg-2);
}

.signal-grid,
.deliverable-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signal-grid article,
.deliverable-list article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), rgba(18, 31, 33, 0.72));
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 46px;
  border: 1px solid rgba(61, 214, 181, 0.45);
  border-radius: 6px;
  color: var(--teal);
  font-weight: 850;
}

.signal-grid p,
.deliverable-list p {
  color: var(--muted);
  line-height: 1.65;
}

.markets {
  background: #081315;
}

.market-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.market-table > div {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 1.08fr;
  gap: 1px;
}

.market-table span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--panel);
  color: var(--muted);
  line-height: 1.45;
}

.market-table .table-head span {
  min-height: 48px;
  background: var(--panel-2);
  color: var(--text);
  font-weight: 800;
}

.market-table div:not(.table-head) span:first-child {
  color: var(--teal);
  font-weight: 800;
}

.deliverables {
  background: var(--bg-2);
}

.deliverable-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deliverable-list article {
  min-height: 190px;
}

.final-cta {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 6vw, 86px);
  background: linear-gradient(135deg, #0b1719 0%, #132327 55%, #1d261d 100%);
}

.final-cta h2 {
  max-width: 900px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 28px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 9, 10, 0.92), rgba(5, 9, 10, 0.62)),
      linear-gradient(0deg, var(--bg) 0%, rgba(5, 9, 10, 0.08) 62%);
  }

  .hero-content {
    margin: 0 auto;
    padding-bottom: 58px;
  }

  .intro,
  .signal-grid,
  .deliverable-list {
    grid-template-columns: 1fr;
  }

  .market-table > div {
    grid-template-columns: 1fr;
  }

  .market-table .table-head {
    display: none;
  }

  .market-table span {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 8px;
    padding: 12px 14px;
  }

  .brand span:last-child {
    max-width: 124px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switcher {
    gap: 5px;
    padding: 0 7px;
  }

  .language-label {
    display: none;
  }

  .language-select {
    min-width: 84px;
    font-size: 0.78rem;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: calc(100% - 28px);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}
