:root {
  --bg: #111111;
  --panel: #1b1b1b;
  --panel2: #252525;
  --text: #f6f2ef;
  --muted: #aaa6a1;
  --red: #C9A84C;
  --red2: #A8853A;
  --line: rgba(255, 255, 255, .11);
  --cream: #f5eee9;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  overflow-x: hidden
}

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

.section-pad {
  padding: 110px 7vw
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw;
  background: rgba(17, 17, 17, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 1px
}

.logo-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 13px
}

.logo-text {
  font-size: 21px;
  line-height: .75
}

.logo small {
  font-size: 14px;
  letter-spacing: 4px
}

.site-header nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px
}

.site-header nav a:hover {
  color: var(--red)
}

.header-cta {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  padding: 12px 18px
}

.header-cta span {
  display: inline-grid;
  place-items: center;
  background: #fff;
  color: var(--red);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 10px
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 80px;
  padding-top: 20px
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 28px
}

.eyebrow.red {
  color: var(--red)
}

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

.hero h1{
  font-size:clamp(46px,5.4vw,84px);
  line-height:.92;
  letter-spacing:-.055em;
}

.hero h1 span {
  color: var(--red);
  display: block
}

.hero-text {
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.08;
  max-width: 640px;
  color: #fff;
  margin-bottom: 34px
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .03em;
  border: 1px solid var(--line)
}

.btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff
}

.btn.primary span,
.btn.light span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--red)
}

.btn.ghost {
  background: transparent
}

.hero-visual {
  height: 680px;
  position: relative
}

.product-stage {
  height: 100%;
  border-radius: 34px;
  background: radial-gradient(circle at 72% 18%, rgba(201, 168, 76, .8), transparent 34%), linear-gradient(145deg, #1c1c1c, #1e1c12 55%, #161616);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

.product-stage:before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  transform: rotate(-18deg)
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover
}

.floating-card {
  position: absolute;
  background: var(--cream);
  color: #111;
  border-radius: 16px;
  padding: 20px 34px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .38)
}

.card-one {
  left: 10%;
  top: 18%;
  transform: rotate(-7deg)
}

.card-two {
  right: 9%;
  top: 49%;
  transform: rotate(7deg);
  background: #111;
  color: #fff;
  border: 1px solid var(--line)
}

.card-three {
  left: 24%;
  bottom: 13%;
  transform: rotate(-3deg);
  background: #fff8e7
}

.logo-marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #161616;
  padding: 22px 0
}

.marquee-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 22s linear infinite
}

.marquee-track span {
  font-size: 28px;
  font-weight: 900;
  color: #565656;
  text-transform: uppercase
}

.marquee-track span:nth-child(3n) {
  color: #fff
}

.marquee-track span:nth-child(4n) {
  color: var(--red)
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.intro {
  background: #151515
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 35px
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: start
}

.intro h2,
.marketplaces h2,
.featured h2,
.work h2 {
  font-size: clamp(44px, 5.6vw, 86px);
  letter-spacing: -.06em;
  line-height: .92
}

.intro p,
.section-top>p {
  font-size: 25px;
  line-height: 1.15;
  color: var(--muted)
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px
}

.stat-row div {
  background: #1e1e1e;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px
}

.stat-row strong {
  display: block;
  font-size: 48px;
  color: var(--red);
  line-height: 1
}

.stat-row span {
  display: block;
  color: var(--muted);
  margin-top: 10px
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 50px
}

.section-top>p {
  max-width: 520px
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.market-card {
  min-height: 320px;
  border-radius: 28px;
  background: linear-gradient(180deg, #262626, #171717);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden
}

.market-card:after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--red);
  filter: blur(60px);
  opacity: .24;
  right: -55px;
  bottom: -45px
}

.market-card span {
  color: var(--red);
  font-weight: 900
}

.market-card h3 {
  font-size: 34px;
  margin-bottom: 14px
}

.market-card p {
  color: var(--muted);
  line-height: 1.35
}

.services {
  background: #0e0e0e
}

.split-heading {
  display: grid;
  grid-template-columns: .35fr .65fr;
  gap: 50px;
  margin-bottom: 45px
}

.split-heading h2 {
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: .92;
  letter-spacing: -.06em
}

.service-list {
  border-top: 1px solid var(--line)
}

.service-item {
  display: grid;
  grid-template-columns: .15fr .35fr .35fr .15fr;
  gap: 26px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line)
}

.service-item span {
  color: var(--red);
  font-weight: 900
}

.service-item h3 {
  font-size: 28px;
  margin: 0
}

.service-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35
}

.service-item a {
  justify-self: end;
  background: var(--red);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0
}

.service-item a:after {
  content: "→";
  font-size: 18px;
  color: white
}

.featured {
  background: #181818
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.brand-cards article {
  background: #222;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden
}

.image-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #242424, #383838);
  color: #777;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-align: center
}

.brand-cards div:last-child {
  padding: 26px
}

.brand-cards span {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900
}

.brand-cards h3 {
  font-size: 34px;
  margin: 8px 0 10px
}

.brand-cards p {
  color: var(--muted);
  line-height: 1.35
}

.brand-wall {
  background: var(--cream);
  color: #111
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 30px
}

.wall-grid div {
  height: 110px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #999;
  font-weight: 900;
  letter-spacing: .1em;
  overflow: hidden;
  padding: 16px
}

.wall-grid div img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain
}

.brand-img-wrap {
  height: 280px;
  overflow: hidden
}

.brand-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.img-pos-top { object-position: center top }
.img-pos-bottom { object-position: center bottom }
.img-pos-left { object-position: left center }
.img-pos-right { object-position: right center }

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr;
  gap: 22px
}

.work-card {
  background: #202020;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden
}

.work-card .image-placeholder {
  min-height: 260px
}

.work-card.large .image-placeholder {
  min-height: 420px
}

.work-img-wrap {
  overflow: hidden;
  min-height: 260px
}

.work-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center
}

.work-img-wrap.large img {
  height: 420px
}

.work-card h3 {
  font-size: 32px;
  letter-spacing: -.03em;
  line-height: 1.02;
  padding: 24px 24px 0
}

.work-card p {
  padding: 0 24px 24px;
  color: var(--muted)
}

.cta {
  position: relative;
  text-align: center;
  padding: 140px 7vw;
  background: #111;
  overflow: hidden
}

.cta-glow {
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  width: 420px;
  height: 260px;
  background: var(--red);
  filter: blur(95px);
  opacity: .35
}

.cta>*:not(.cta-glow) {
  position: relative
}

.cta h2 {
  font-size: clamp(48px, 6vw, 94px);
  line-height: .92;
  letter-spacing: -.06em;
  max-width: 850px;
  margin: 0 auto 34px
}

.btn.light {
  background: #fff;
  color: #111;
  border-color: #fff
}

.cta-sub {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 48px
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  text-align: left
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px
}

.form-group label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted)
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555
}

.form-group textarea {
  resize: vertical
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 18px 24px;
  font-size: 15px
}

.form-success {
  display: none;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--red);
  border-radius: 14px;
  padding: 24px;
  font-weight: 900;
  color: var(--red);
  font-size: 18px
}

@media(max-width:620px) {
  .form-row {
    grid-template-columns: 1fr
  }
}

footer {
  background: #0b0b0b;
  padding: 70px 7vw 30px
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 60px
}

.footer-top h3 {
  font-size: clamp(54px, 7vw, 120px);
  letter-spacing: -.07em;
  line-height: .85;
  margin: 0;
  color: #fff
}

.footer-top p {
  color: var(--muted);
  font-size: 18px
}

.footer-links {
  display: grid;
  gap: 14px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  color: #777;
  font-size: 13px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger.open span:nth-child(2) { opacity: 0 }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.mobile-nav {
  display: none;
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, .97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  z-index: 49;
  flex-direction: column;
  padding: 20px 7vw 30px
}

.mobile-nav.open {
  display: flex
}

.mobile-nav-link {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.mobile-nav-link:last-child {
  border-bottom: none;
  color: var(--red)
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise .8s ease forwards
}

.delay-1 {
  animation-delay: .18s
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:980px) {
  .site-header nav {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero,
  .intro-grid,
  .split-heading {
    grid-template-columns: 1fr
  }

  .hero-visual {
    height: 520px
  }

  .market-grid,
  .brand-cards,
  .wall-grid,
  .work-grid,
  .stat-row {
    grid-template-columns: 1fr 1fr
  }

  .service-item {
    grid-template-columns: .15fr 1fr
  }

  .service-item p {
    grid-column: 2
  }

  .service-item a {
    grid-column: 2;
    justify-self: start
  }

  .section-top,
  .footer-top {
    display: block
  }

  .footer-links {
    margin-top: 30px
  }
}

@media(max-width:620px) {
  .section-pad {
    padding: 75px 6vw
  }

  .hero h1 {
    font-size: 56px
  }

  .hero-text {
    font-size: 22px
  }

  .market-grid,
  .brand-cards,
  .wall-grid,
  .work-grid,
  .stat-row {
    grid-template-columns: 1fr
  }

  .site-header {
    padding: 18px 6vw
  }

  .header-cta {
    display: none
  }

  .hero {
    gap: 40px
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin-top: 10px
  }
}