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

body{
  background:#04070b;
  color:#fff;
  font-family:
    Inter,
    sans-serif;
}

.inventory-wrapper{
  position:relative;
  overflow:hidden;
}

/* =========================
HERO
========================= */

.inventory-hero{
  position:relative;
  min-height:78vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:120px 32px;

  background:
  linear-gradient(
    180deg,
    rgba(3,8,18,0.96),
    rgba(2,5,10,1)
  );
}

.inventory-hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(
    circle at 20% 20%,
    rgba(0,120,255,0.14),
    transparent 32%
    ),

    radial-gradient(
    circle at 80% 10%,
    rgba(0,80,255,0.08),
    transparent 30%
    ),

    radial-gradient(
    circle at 50% 100%,
    rgba(0,140,255,0.05),
    transparent 45%
    );

  pointer-events:none;
}

.inventory-hero-content{
  position:relative;
  z-index:2;

  width:min(960px, 100%);
  text-align:center;
}

.inventory-kicker{
  display:inline-flex;

  padding:10px 16px;

  border-radius:999px;

  background:
  rgba(0,120,255,0.12);

  border:
  1px solid rgba(120,180,255,0.12);

  font-size:11px;
  letter-spacing:0.18em;
}

.inventory-hero h1{
  margin-top:26px;

  font-size:68px;
  line-height:1.02;
  letter-spacing:-0.04em;
}

.inventory-hero p{
  margin-top:26px;

  color:rgba(255,255,255,0.72);

  font-size:18px;
  line-height:1.9;

  max-width:760px;
  margin-inline:auto;
}

/* =========================
GRID
========================= */

.inventory-section{
  padding:80px 32px 140px;
}

.inventory-grid{
  width:min(1320px, 100%);
  margin:0 auto;

  position:relative;

  display:grid;
  grid-template-columns:
  repeat(
    auto-fit,
    minmax(340px, 1fr)
  );

  gap:32px;
}

.inventory-grid::before{
  content:"";

  position:absolute;
  inset:-10%;

  background:
    radial-gradient(
      circle at center,
      rgba(0,120,255,0.06),
      transparent 70%
    );

  pointer-events:none;

  filter:blur(80px);
}

/* =========================
CARD
========================= */

.inventory-card{
  position:relative;

  overflow:hidden;

  border-radius:30px;

  background:
  linear-gradient(
    180deg,
    rgba(10,18,32,0.96),
    rgba(4,8,16,0.985)
  );

  border:
  1px solid rgba(255,255,255,0.05);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.22),
    0 30px 80px rgba(0,0,0,0.35);

  transition:
    transform .45s ease,
    border-color .45s ease,
    box-shadow .45s ease;
}

.inventory-card:hover{
  transform:
    translateY(-10px);

  border-color:
    rgba(0,140,255,0.26);

  box-shadow:
    0 25px 70px rgba(0,0,0,0.48),
    0 0 40px rgba(0,140,255,0.10);
}

.inventory-image{
  position:relative;

  height:300px;

  overflow:hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(0,120,255,0.08),
      transparent 70%
    );
}

.inventory-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  opacity:0;

  transition:
    transform .5s ease;

  animation:
    inventoryImageFade 1s ease forwards;
}

@keyframes inventoryImageFade{

  from{
    opacity:0;
    transform:scale(1.04);
  }

  to{
    opacity:1;
    transform:scale(1);
  }

}

.inventory-image::after{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0),
      rgba(4,8,16,0.28) 70%,
      rgba(4,8,16,0.72)
    );

  pointer-events:none;
}

.inventory-card:hover
.inventory-image img{
  transform:scale(1.06);
}

.inventory-card:hover .inventory-content h2{
  color:#9fd3ff;
}

.inventory-content{
  padding:32px;
}

.inventory-content h2{
  font-size:34px;
  line-height:1.05;
}

.inventory-tag{
  margin-top:14px;

  display:inline-flex;

  padding:8px 14px;

  border-radius:999px;

  background:
  rgba(0,120,255,0.1);

  color:#8cc7ff;

  font-size:12px;
  letter-spacing:0.12em;
}

.inventory-content p{
  margin-top:22px;

  color:
  rgba(255,255,255,0.72);

  line-height:1.85;
}

.inventory-specs{
  margin-top:28px;

  display:grid;
  gap:14px;
}

.inventory-spec{
  display:flex;
  justify-content:space-between;

  padding-bottom:14px;

  border-bottom:
  1px solid rgba(255,255,255,0.06);
}

.inventory-spec span:first-child{
  color:
  rgba(255,255,255,0.46);
}

.inventory-button{
  margin-top:34px;

  width:100%;

  display:flex;

  align-items:center;
  justify-content:center;

  text-decoration:none;

  padding:16px 20px;

  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      #007dff,
      #11a8ff
    );

  box-shadow:
    0 10px 24px rgba(0,125,255,0.22);

  color:#fff;

  font-weight:600;

  letter-spacing:0.01em;

  cursor:pointer;

  transition:
    transform .3s ease,
    box-shadow .3s ease;

  min-height:56px;
}

.inventory-button:hover{
  transform:translateY(-2px);

  box-shadow:
    0 14px 34px rgba(0,125,255,0.30);
}

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

/* =========================
OWNERSHIP INTELLIGENCE
========================= */

.ownership-intelligence{
  width:min(1180px, calc(100vw - 48px));
  margin:0 auto;

  padding:40px 0 140px;
}

.ownership-header{
  text-align:center;
  max-width:860px;
  margin:0 auto 60px;
}

.ownership-header h2{
  margin-top:22px;

  font-size:56px;
  line-height:1.04;
  letter-spacing:-0.04em;
}

.ownership-header p{
  margin-top:22px;

  color:rgba(255,255,255,0.68);

  line-height:1.9;
}

.ownership-grid{
  display:grid;

  grid-template-columns:
  repeat(
    auto-fit,
    minmax(260px, 1fr)
  );

  gap:24px;
}

.ownership-card{
  padding:30px;

  border-radius:28px;

  background:
  linear-gradient(
    180deg,
    rgba(8,16,32,0.96),
    rgba(4,8,18,0.98)
  );

  border:
  1px solid rgba(255,255,255,0.06);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 20px 50px rgba(0,0,0,0.24);
}

.ownership-card span{
  display:block;

  color:#7dc4ff;

  font-size:11px;
  letter-spacing:0.16em;

  margin-bottom:14px;
}

.ownership-card h3{
  font-size:24px;
  line-height:1.15;

  margin-bottom:18px;
}

.ownership-card p{
  color:rgba(255,255,255,0.72);

  line-height:1.9;
}

@media(max-width:768px){

  .ownership-header h2{
    font-size:40px;
  }

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

  .inventory-hero{
    padding:100px 22px;
  }

  .inventory-hero h1{
    font-size:42px;
  }

  .inventory-hero p{
    font-size:16px;
  }

  .inventory-section{
    padding:60px 20px 100px;
  }

  .inventory-grid{
    grid-template-columns:1fr;
  }

  .inventory-image{
    height:240px;
  }

}