*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: #FFFFFF;
  color: #1B1E24;
  font-family: "General Sans", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: "General Sans", -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

button, input, textarea, select {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid #E3A93B;
  outline-offset: 2px;
}

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Calibri", monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E3A93B;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #E3A93B;
}

.section-pad {
  padding: 96px 0;
}
@media (max-width: 860px) {
  .section-pad {
    padding: 64px 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Calibri", monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold {
  background: linear-gradient(180deg, #F0BC53, #E3A93B);
  color: #0B0E14;
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(227, 169, 59, 0.28);
}

.btn-ghost-dark {
  background: transparent;
  color: #F4F3EF;
  border-color: rgba(255, 255, 255, 0.09);
}
.btn-ghost-dark:hover {
  border-color: #E3A93B;
  color: #F0BC53;
}

.btn-ghost-light {
  background: transparent;
  color: #1B1E24;
  border-color: #E7E4DC;
}
.btn-ghost-light:hover {
  border-color: #B9822A;
  color: #B9822A;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  text-transform: uppercase;
  margin-top: 14px;
}
.section-head p {
  margin-top: 14px;
  color: #9AA2B1;
  font-size: 15px;
}
.section-head.on-light p {
  color: #5B6270;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(11, 14, 20, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #F0BC53, #B9822A 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "General Sans", -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0B0E14;
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name b {
  font-family: "General Sans", -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  color: #F4F3EF;
  letter-spacing: 0.02em;
}
.brand-name span {
  font-family: "Calibri", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #E3A93B;
}

nav.main-nav {
  display: flex;
  gap: 26px;
}
nav.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  color: #9AA2B1;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #E3A93B;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.main-nav a:hover {
  color: #F4F3EF;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after {
  width: 100%;
}
nav.main-nav a.active {
  color: #F0BC53;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  overflow: hidden;
}
.lang-toggle button {
  font-family: "Calibri", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 12px;
  background: transparent;
  border: none;
  color: #9AA2B1;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-toggle button.active {
  background: #E3A93B;
  color: #0B0E14;
}
.lang-toggle button:not(.active):hover {
  color: #F4F3EF;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 1px;
  background: #F4F3EF;
}

@media (max-width: 1080px) {
  nav.main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #0B0E14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  nav.main-nav.open {
    max-height: 480px;
  }
  nav.main-nav a {
    padding: 14px clamp(20px, 5vw, 72px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }
  .nav-toggle {
    display: flex;
  }
}
.hero {
  padding: 150px 0 64px;
  overflow: hidden;
  position: relative;
  background-size: cover;
}

.hero-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  color: #F4F3EF;
  font-size: clamp(2.1rem, 4.3vw, 3.4rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.hero-copy h1 em {
  font-style: normal;
  color: #F0BC53;
}

.hero-copy p.lede {
  margin-top: 22px;
  color: #9AA2B1;
  font-size: 16.5px;
  max-width: 46ch;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9AA2B1;
}
.hero-trust-line svg {
  width: 16px;
  height: 16px;
  stroke: #26B37E;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/3.4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(160deg, #1B1509, #0B0E14 65%);
}

.nugget {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nugget svg {
  width: 78%;
  height: 78%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(11, 14, 20, 0.85), transparent);
  pointer-events: none;
}

.hero-visual-caption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-family: "Calibri", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9AA2B1;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 520px;
  }
}
.ticker-bar {
  background: #0e0c0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 30px 0 34px;
}

.ticker-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.ticker-head h3 {
  color: #F4F3EF;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticker-head h3 .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26B37E;
  animation: pulse 2s infinite;
}
.ticker-head h3 .dot.stale {
  background: #9AA2B1;
  animation: none;
}
.ticker-head .ticker-sub {
  font-family: "Calibri", monospace;
  font-size: 11.5px;
  color: #9AA2B1;
}
.ticker-head .ticker-clock {
  font-family: "Calibri", monospace;
  font-size: 12px;
  color: #9AA2B1;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.gold-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  overflow: hidden;
}

.gold-spot {
  background: #0e0c0f;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gold-spot .spot-label {
  font-family: "Calibri", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E3A93B;
  margin-bottom: 10px;
}
.gold-spot .spot-price {
  font-family: "Calibri", monospace;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: #F4F3EF;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.gold-spot .spot-delta {
  font-family: "Calibri", monospace;
  font-size: 14px;
  color: #26B37E;
}
.gold-spot .spot-delta.down {
  color: #E5595F;
}
.gold-spot .spot-unit {
  font-family: "Calibri", monospace;
  font-size: 12px;
  color: #9AA2B1;
  margin-top: 6px;
}
.gold-spot .spot-gram {
  font-family: "Calibri", monospace;
  font-size: 13.5px;
  color: #9AA2B1;
  margin-top: 4px;
}
.gold-spot .spot-gram b {
  color: #F0BC53;
  font-weight: 600;
}
.gold-spot .spot-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.gold-spot .spot-stat {
  font-family: "Calibri", monospace;
  font-size: 11px;
  color: #9AA2B1;
}
.gold-spot .spot-stat b {
  display: block;
  color: #F4F3EF;
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}

.gold-karats {
  background: #0e0c0f;
  padding: 26px 28px;
}
.gold-karats .karats-label {
  font-family: "Calibri", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E3A93B;
  margin-bottom: 14px;
}
.gold-karats .karat-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gold-karats .karat-row:last-of-type {
  border-bottom: none;
}
.gold-karats .karat-row .karat-name {
  font-size: 13.5px;
  color: #F4F3EF;
  font-weight: 500;
}
.gold-karats .karat-row .karat-purity {
  font-family: "Calibri", monospace;
  font-size: 11px;
  color: #9AA2B1;
}
.gold-karats .karat-row .karat-price {
  font-family: "Calibri", monospace;
  font-size: 14px;
  font-weight: 600;
  color: #F0BC53;
  text-align: right;
  min-width: 88px;
}
.gold-karats .karat-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
  color: #9AA2B1;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .gold-panel {
    grid-template-columns: 1fr;
  }
  .spot-stats {
    grid-template-columns: repeat(2, auto);
    row-gap: 12px;
  }
}
.trust-bar {
  background: #E7E4DC;
  border-bottom: 1px solid #E7E4DC;
  padding: 22px 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 22px;
  border-left: 1px solid #E7E4DC;
}
.trust-badge:first-child {
  border-left: none;
  padding-left: 0;
}
.trust-badge .badge-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid #E7E4DC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B9822A;
}
.trust-badge .badge-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.trust-badge .badge-title {
  font-family: "General Sans", -apple-system, "Segoe UI", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1B1E24;
}
.trust-badge .badge-sub {
  font-size: 11.5px;
  color: #5B6270;
  margin-top: 2px;
}

@media (max-width: 1080px) {
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }
  .trust-badge:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 620px) {
  .trust-row {
    grid-template-columns: 1fr;
  }
  .trust-badge {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #E7E4DC;
    padding-top: 16px;
  }
  .trust-badge:first-child {
    border-top: none;
    padding-top: 6px;
  }
}
#about {
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-copy .eyebrow {
  color: #B9822A;
}
.about-copy .eyebrow::before {
  background: #B9822A;
}

.about-copy h2 {
  margin-top: 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  color: #1B1E24;
}

.about-copy p {
  margin-top: 18px;
  color: #5B6270;
  font-size: 16px;
  max-width: 52ch;
}
.about-copy p + p {
  margin-top: 14px;
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #E7E4DC;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1B1E24;
}
.value-item svg {
  width: 20px;
  height: 20px;
  stroke: #B9822A;
  fill: none;
  stroke-width: 1.7;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/3.1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E7E4DC;
  background: linear-gradient(155deg, #EDEAD9, #DDE3D2 60%, #CFDAC7);
}

.about-visual svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
  }
}
#chain {
  background: #0B0E14;
  position: relative;
}

#chain .section-head .eyebrow {
  color: #F0BC53;
}
#chain .section-head .eyebrow::before {
  background: #F0BC53;
}

#chain .section-head h2 {
  color: #F4F3EF;
}

.chain-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.chain-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}

.chain-connector {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 6px, transparent 6px 12px);
  z-index: 0;
}

.chain-step:last-child .chain-connector {
  display: none;
}

.chain-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid #E3A93B;
  background: #0B0E14;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chain-icon svg {
  width: 30px;
  height: 30px;
  stroke: #F0BC53;
  fill: none;
  stroke-width: 1.4;
}

.chain-step h3 {
  color: #F4F3EF;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.chain-step h3 span {
  display: block;
  color: #E3A93B;
  font-family: "Calibri", monospace;
  font-size: 11px;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

.chain-step p {
  color: #9AA2B1;
  font-size: 13.5px;
  max-width: 26ch;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .chain-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
  .chain-connector {
    display: none;
  }
}
@media (max-width: 620px) {
  .chain-track {
    grid-template-columns: 1fr;
  }
}
#atouts {
  background: #F6F5F1;
}

#atouts .section-head .eyebrow {
  color: #B9822A;
}
#atouts .section-head .eyebrow::before {
  background: #B9822A;
}

#atouts .section-head h2 {
  color: #1B1E24;
}

#atouts .section-head p {
  color: #5B6270;
}

.atouts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E7E4DC;
  border: 1px solid #E7E4DC;
  border-radius: 8px;
  overflow: hidden;
}

.atout {
  background: #FFFFFF;
  padding: 26px 20px;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.atout:hover {
  background: #F6F5F1;
}
.atout .atout-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(227, 169, 59, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.atout .atout-icon svg {
  width: 17px;
  height: 17px;
  stroke: #B9822A;
  fill: none;
  stroke-width: 1.7;
}
.atout h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: #1B1E24;
  margin-bottom: 6px;
}
.atout p {
  font-size: 12.5px;
  color: #5B6270;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .atouts-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .atouts-row {
    grid-template-columns: 1fr;
  }
}
#process {
  background: #0e0c0f;
}

#process .section-head .eyebrow {
  color: #F0BC53;
}
#process .section-head .eyebrow::before {
  background: #F0BC53;
}

#process .section-head h2 {
  color: #F4F3EF;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-line {
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.step-circle {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #E3A93B;
  color: #0B0E14;
  font-family: "Calibri", monospace;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
}
.step-icon svg {
  width: 100%;
  height: 100%;
  stroke: #F0BC53;
  fill: none;
  stroke-width: 1.5;
}

.process-step h3 {
  color: #F4F3EF;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.process-step p {
  color: #9AA2B1;
  font-size: 12.5px;
  max-width: 24ch;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .process-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .process-line {
    display: none;
  }
}
@media (max-width: 620px) {
  .process-track {
    grid-template-columns: 1fr;
  }
}
#lab-compliance {
  background: #0B0E14;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.lc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lc-card {
  background: #161C27;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 36px;
}

.lc-card .eyebrow {
  color: #F0BC53;
}
.lc-card .eyebrow::before {
  background: #F0BC53;
}
.lc-card .eyebrow {
  margin-bottom: 14px;
}

.lc-card h3 {
  color: #F4F3EF;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lc-card > p {
  color: #9AA2B1;
  font-size: 14.5px;
  margin-bottom: 20px;
}

.lc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #F4F3EF;
}
.lc-list li svg {
  width: 16px;
  height: 16px;
  stroke: #26B37E;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 860px) {
  .lc-grid {
    grid-template-columns: 1fr;
  }
}
#partners {
  background: #FFFFFF;
  padding: 70px 0;
  border-bottom: 1px solid #E7E4DC;
}

#partners .section-head {
  margin-bottom: 40px;
}

#partners .section-head .eyebrow {
  color: #B9822A;
}
#partners .section-head .eyebrow::before {
  background: #B9822A;
}

#partners .section-head h2 {
  color: #1B1E24;
  font-size: 1.4rem;
}

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-slot {
  font-family: "Calibri", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5B6270;
  border: 1px dashed #E7E4DC;
  border-radius: 4px;
  padding: 18px 30px;
}

#contact {
  background: #0e0c0f;
}

#contact .section-head .eyebrow {
  color: #F0BC53;
}
#contact .section-head .eyebrow::before {
  background: #F0BC53;
}

#contact .section-head h2 {
  color: #F4F3EF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.profile-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.profile-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  background: #161C27;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 12.5px;
  color: #F4F3EF;
}
.profile-pill input {
  display: none;
}
.profile-pill svg {
  width: 17px;
  height: 17px;
  stroke: #E3A93B;
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}
.profile-pill:hover {
  border-color: #E3A93B;
}
.profile-pill.active {
  background: rgba(227, 169, 59, 0.12);
  border-color: #E3A93B;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #9AA2B1;
}
.contact-detail svg {
  width: 17px;
  height: 17px;
  stroke: #F0BC53;
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}
.contact-detail strong {
  color: #F4F3EF;
  font-weight: 500;
}

form.contact-form {
  background: #161C27;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: "Calibri", monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9AA2B1;
  margin-bottom: 8px;
}

.field input, .field select, .field textarea {
  width: 100%;
  background: #0e0c0f;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  color: #F4F3EF;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #E3A93B;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA2B1' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  font-family: "Calibri", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 4px;
  border: none;
  background: linear-gradient(180deg, #F0BC53, #E3A93B);
  color: #0B0E14;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-submit:hover {
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .profile-select {
    grid-template-columns: 1fr;
  }
}
footer {
  background: #0B0E14;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: "Calibri", monospace;
  font-size: 11px;
  color: #9AA2B1;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  text-decoration: none;
  color: #9AA2B1;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
  color: #F0BC53;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a svg {
  width: 14px;
  height: 14px;
  stroke: #9AA2B1;
  fill: none;
  stroke-width: 1.6;
}
.footer-social a:hover {
  border-color: #E3A93B;
}
.footer-social a:hover svg {
  stroke: #F0BC53;
}

/*# sourceMappingURL=main.css.map */
