
.kicker { font-family: var(--sans); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 14px; letter-spacing: .1em; color: var(--red); margin-bottom: 22px; }

.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.crumbs li { font-size: 13px; color: rgba(255, 255, 255, .5); }
.crumbs li + li::before { content: "/"; margin-right: 10px; color: rgba(255, 255, 255, .28); }
.crumbs a { transition: color .3s; }
.crumbs a:hover { color: var(--red); }
.crumbs li[aria-current] { color: rgba(255, 255, 255, .85); }

.p-opener {
  position: relative; overflow: hidden;
  background: var(--zinc-950); color: var(--white);
  padding: 148px 0 30px;
}
.p-opener .zone-glow {
  background: radial-gradient(ellipse 62% 60% at 78% 46%,
    rgba(237, 29, 36, .2), rgba(237, 29, 36, .06) 55%, transparent 78%);
}
.p-opener-inner {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px; align-items: center;
}
.p-opener-copy { min-width: 0; }
.p-title {
  margin-top: 26px;
  font-size: clamp(38px, 4.6vw, 74px); line-height: .86; font-weight: 900;
  letter-spacing: -.035em; text-transform: uppercase; color: var(--white);
}
.p-title .line { display: block; }
.p-title .line-outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); transition: color .5s; }
.p-title .line-outline:hover { color: var(--white); }
.p-sub {
  margin-top: 26px; max-width: 44ch;
  font-size: 17px; line-height: 1.6; color: var(--zinc-400);
}

.p-chips {
  position: relative; z-index: 10; margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 12px 40px; align-items: center;
}
.p-chips span { position: relative; font-size: 13px; color: rgba(255, 255, 255, .66); padding-left: 18px; }
.p-chips span::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 1px; background: var(--red);
}

.p-opener .crumbs, .p-title, .p-sub { animation: p-rise 1s cubic-bezier(.16, 1, .3, 1) both; }
.p-title { animation-delay: .08s; }
.p-sub { animation-delay: .16s; }
.p-chips { animation: p-rise 1s cubic-bezier(.16, 1, .3, 1) .26s both; }
@keyframes p-rise { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: none; } }

.sec-plate { width: 100%; max-width: 380px; margin-left: auto; }
.sec-plate svg { width: 100%; height: auto; display: block; overflow: visible; }
.sec-plate .dim-text { font-family: var(--sans); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 15px; }

.sec-plate .face, .sec-plate .rim, .sec-plate .ring, .sec-plate .dim, .sec-plate .dim-text {
  transform-box: view-box; transform-origin: 200px 200px;
}
.sec-plate .face { opacity: 0; animation: plate-face 1s cubic-bezier(.16, 1, .3, 1) .2s forwards; }
.sec-plate .rim { opacity: 0; animation: plate-face .8s cubic-bezier(.16, 1, .3, 1) .5s forwards; }
.sec-plate .ring { opacity: 0; animation: plate-ring .8s cubic-bezier(.16, 1, .3, 1) forwards; }
.sec-plate .ring:nth-child(1) { animation-delay: .46s; }
.sec-plate .ring:nth-child(2) { animation-delay: .52s; }
.sec-plate .ring:nth-child(3) { animation-delay: .58s; }
.sec-plate .ring:nth-child(4) { animation-delay: .64s; }
.sec-plate .ring:nth-child(5) { animation-delay: .70s; }
.sec-plate .ring:nth-child(6) { animation-delay: .76s; }
.sec-plate .ring:nth-child(7) { animation-delay: .82s; }
.sec-plate .ring:nth-child(8) { animation-delay: .88s; }
.sec-plate .ring:nth-child(9) { animation-delay: .94s; }
.sec-plate .dim, .sec-plate .dim-text { opacity: 0; animation: plate-face .8s cubic-bezier(.16, 1, .3, 1) .95s forwards; }
@keyframes plate-face { from { opacity: 0; transform: scale(.965); } to { opacity: 1; transform: none; } }
@keyframes plate-ring { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: none; } }

.sec-plate--grades { padding: 8px 0 0; }
.gplate { list-style: none; border-top: 1px solid rgba(255, 255, 255, .16); }
.gplate li {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding: 20px 4px; font-family: var(--sans); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 26px; letter-spacing: -.01em;
  color: rgba(255, 255, 255, .55);
  opacity: 0; animation: p-rise .9s cubic-bezier(.16, 1, .3, 1) forwards;
}
.gplate li:nth-child(1) { animation-delay: .30s; }
.gplate li:nth-child(2) { animation-delay: .40s; }
.gplate li:nth-child(3) { animation-delay: .50s; }
.gplate li:nth-child(4) { animation-delay: .60s; }
.gplate li.is-hot { color: var(--red); }

@media (prefers-reduced-motion: reduce) {
  .p-opener .crumbs, .p-title, .p-sub, .p-chips,
  .sec-plate .face, .sec-plate .rim, .sec-plate .ring, .sec-plate .dim,
  .sec-plate .dim-text, .gplate li {
    animation: none; opacity: 1; transform: none;
  }
}

.p-over { padding-block: var(--sect); background: var(--white); }
.p-over-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: stretch; }
.p-over-body h2 {
  font-size: clamp(34px, 3.4vw, 50px); font-weight: 900; text-transform: uppercase;
  line-height: .92; letter-spacing: -.03em; color: var(--slate-900);
}
.p-over-copy { margin-top: 30px; }
.p-over-copy p { font-size: 17px; line-height: 1.68; color: var(--slate-600); max-width: 36em; }
.p-over-copy p + p { margin-top: 18px; }
.p-over-copy a { color: var(--slate-900); box-shadow: inset 0 -1px 0 var(--red); transition: color .3s; }
.p-over-copy a:hover { color: var(--red); }

.p-shot { position: relative; background: var(--black); min-height: 300px; }
.p-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.p-specs { padding-block: var(--sect); background: var(--zinc-50); }
.spec-head { margin-bottom: 48px; }
.spec-head h2 {
  font-size: clamp(34px, 3.4vw, 50px); font-weight: 900; text-transform: uppercase;
  line-height: .92; letter-spacing: -.03em; color: var(--slate-900);
}
.spec-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--slate-200); border: 1px solid var(--slate-200);
}
.spec-row {
  display: grid; grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px; background: var(--white); padding: 24px 28px; align-items: baseline;
}
.spec-row dt { font-size: 20px; font-weight: 800; letter-spacing: -.015em; color: var(--zinc-950); }
.spec-row dd { font-size: 16px; line-height: 1.55; color: var(--slate-600); }
.spec-row dd.num { font-family: var(--sans); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 15px; color: var(--slate-900); }

.spec-notes { list-style: none; margin-top: 28px; display: grid; gap: 1px; }
.spec-notes li {
  position: relative; padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--slate-200);
  font-size: 15px; color: var(--slate-600);
}
.spec-notes li::before {
  content: ""; position: absolute; left: 0; top: 22px; width: 10px; height: 1px; background: var(--red);
}
.spec-sub {
  margin-top: 44px; font-size: 13px; font-weight: 700; color: var(--slate-900);
}
.spec-sub + .spec-notes { margin-top: 12px; }

.p-charts { padding: 0 0 var(--sect); background: var(--zinc-50); }
.p-charts--solo { padding-top: var(--sect); }
.chart + .chart { margin-top: 72px; }
.chart-title {
  font-size: clamp(26px, 2.4vw, 36px); font-weight: 900; text-transform: uppercase;
  line-height: .95; letter-spacing: -.025em; color: var(--slate-900); margin-bottom: 26px;
}
.tbl-wrap {
  overflow-x: auto; background: var(--white);
  border: 1px solid #e4e4e7; border-top: 3px solid var(--red);
}
.tbl { border-collapse: collapse; width: 100%; min-width: max-content; background: var(--white); }
.tbl th, .tbl td {
  padding: 15px 20px; text-align: left; white-space: nowrap;
  border-bottom: 1px solid #e4e4e7; border-right: 1px solid #e4e4e7;
}
.tbl th:last-child, .tbl td:last-child { border-right: 0; }
.tbl thead th {
  font-size: 14px; font-weight: 800; color: var(--white);
  background: var(--zinc-950); border-color: rgba(255, 255, 255, .13);
}
.tbl tbody td {
  font-size: 14px; color: var(--zinc-600);
  font-variant-numeric: tabular-nums;
}
.tbl tbody tr:nth-child(even) td, .tbl tbody tr:nth-child(even) th { background: #f4f4f5; }
.tbl tbody td:first-child, .tbl tbody th {
  font-size: 16px; font-weight: 800; color: var(--zinc-950);
}
.tbl tbody tr:last-child td, .tbl tbody tr:last-child th { border-bottom: 0; }
.tbl tbody tr:hover td, .tbl tbody tr:hover th { background: rgba(237, 29, 36, .055); }
.tbl tbody tr.grp th {
  font-size: 15px; font-weight: 800; color: var(--red);
  background: var(--white); border-bottom-color: #d4d4d8;
}

.p-buyer {
  position: relative; overflow: hidden;
  padding-block: var(--sect); background: var(--zinc-950); color: var(--white);
}
.p-buyer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 46% at 16% 8%,
    rgba(237, 29, 36, .18), rgba(237, 29, 36, .06) 55%, transparent 78%);
}
.p-buyer .container { position: relative; z-index: 1; }
.buyer-head { margin-bottom: 48px; }
.buyer-head h2 {
  max-width: 12em;
  font-size: clamp(34px, 4.4vw, 64px); font-weight: 900;
  line-height: .92; letter-spacing: -.035em; text-transform: uppercase;
}
.buyer-head h2 .outline { color: transparent; -webkit-text-stroke: 1px var(--white); }
.buyer-register { border-top: 1px solid rgba(255, 255, 255, .12); }
.buyer-item {
  display: grid; grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px; padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.buyer-no {
  padding-top: 5px; font-size: 13px; font-weight: 700;
  color: var(--red); font-variant-numeric: tabular-nums;
}
.buyer-item h3 {
  font-size: clamp(18px, 1.7vw, 23px); font-weight: 800;
  line-height: 1.2; letter-spacing: -.015em; color: var(--white);
}
.buyer-item p {
  margin-top: 12px; max-width: 74ch;
  font-size: 15.5px; line-height: 1.7; color: var(--zinc-400);
}
.buyer-links {
  display: flex; flex-wrap: wrap; gap: 14px 34px;
  margin-top: 44px;
}
.buyer-links a {
  position: relative; padding-bottom: 6px; font-size: 13.5px; font-weight: 700;
  color: var(--zinc-300); transition: color .25s;
}
.buyer-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--red); transform: scaleX(.24); transform-origin: left; transition: transform .3s;
}
.buyer-links a:hover { color: var(--white); }
.buyer-links a:hover::after { transform: scaleX(1); }

.p-more { padding-block: 72px 88px; background: var(--white); color: var(--slate-900); overflow: hidden; }
.p-more h2 {
  font-size: clamp(40px, 4.4vw, 64px); font-weight: 900; text-transform: uppercase;
  line-height: .86; letter-spacing: -.03em;
}
.p-more h2 .outline { color: transparent; -webkit-text-stroke: 1px var(--black); }
.mstrip-wrap { margin-top: 36px; overflow: hidden; }
.mstrip { display: flex; width: max-content; animation: marquee 64s linear infinite; }
.mstrip:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .mstrip { animation: none; } }
.mtile { position: relative; width: 260px; aspect-ratio: 1; margin-right: 18px; background: var(--black); overflow: hidden; flex: none; }
.mtile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .85; transition: transform .7s cubic-bezier(.16, 1, .3, 1), opacity .7s;
}
.mtile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .78), rgba(0, 0, 0, .15) 48%, transparent 68%);
}
.mtile:hover img { transform: scale(1.06); opacity: 1; }
.mtile-name {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  font-size: 17px; font-weight: 700; line-height: 1.2; color: var(--white); transition: color .3s;
}
.mtile:hover .mtile-name { color: var(--red); }

@media (max-width: 1023px) {
  .p-opener-inner { grid-template-columns: 1fr; gap: 40px; }
  .sec-plate { max-width: 300px; margin-left: 0; }
  .p-over-grid { grid-template-columns: 1fr; gap: 40px; }
  .p-shot img { aspect-ratio: 16 / 10; }
  .buyer-item { grid-template-columns: 52px minmax(0, 1fr); }
}
@media (max-width: 767px) {
  .p-opener { padding-top: 116px; }
  .sec-plate { max-width: 240px; }
  .spec-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }
  .buyer-head { margin-bottom: 34px; }
  .buyer-head h2 { font-size: clamp(27px, 8.4vw, 34px); }
  .buyer-item { grid-template-columns: 34px minmax(0, 1fr); gap: 14px; padding: 24px 0; }
  .buyer-no { padding-top: 3px; }
  .buyer-item h3 { font-size: 17px; }
  .buyer-item p { font-size: 14.5px; }
  .buyer-links { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mtile { width: 200px; }
}
