:root {
  --black: #101011;
  --white: #f7f7f0;
  --green: #46a843;
  --blue: #3f62ff;
  --lime: #d7fb45;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,0.5), transparent 16%),
    radial-gradient(circle at 74% 78%, rgba(255,255,255,0.58), transparent 18%),
    linear-gradient(135deg, #a8cf59, var(--lime) 42%, #b8c99d);
}

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

.detail-nav {
  position: fixed;
  z-index: 10;
  top: 28px;
  left: 50%;
  width: min(calc(100% - 64px), 1500px);
  height: 66px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  /* border: 2px solid rgba(16,16,17,0.2); */
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px);
  font-weight: 900;
}

.detail-hero {
  width: min(calc(100% - 80px), 1500px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 130px 0 70px;
}

.detail-copy p {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 108px);
  line-height: 0.86;
  font-weight: 900;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 126px);
  line-height: 0.92;
  font-weight: 900;
}

.detail-copy span {
  display: block;
  width: min(620px, 100%);
  margin-top: 30px;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.5;
  font-weight: 700;
}

.detail-device,
.detail-dashboard,
.detail-posters,
.detail-brand {
  min-height: 560px;
  border-radius: 56px;
  box-shadow: 0 44px 80px rgba(44,57,23,0.28);
}

.detail-device {
  position: relative;
  background: var(--green);
  transform: rotate(5deg);
}

.screen {
  position: absolute;
  width: 30%;
  height: 58%;
  right: 25%;
  bottom: 12%;
  border: 10px solid #111;
  border-radius: 28px;
  background: linear-gradient(180deg, #222, #f4ce31 38%, #43bb4c 39% 64%, #e75348 65%);
  transform: rotate(-12deg);
}

.screen-b {
  right: 10%;
  bottom: 18%;
  transform: rotate(12deg);
}

.detail-dashboard {
  padding: 42px;
  background: #111114;
}

.detail-dashboard span {
  display: block;
  border-radius: 24px;
  background: linear-gradient(135deg, #3475ff, #eef6ff);
}

.detail-dashboard span:first-child {
  height: 72px;
}

.detail-dashboard span:nth-child(2) {
  height: 300px;
  margin-top: 28px;
}

.detail-dashboard span:nth-child(3) {
  height: 96px;
  margin-top: 28px;
}

.detail-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 34px;
  background: var(--white);
  transform: rotate(-5deg);
}

.detail-posters span {
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 25%, #eaff2f, transparent 22%),
    linear-gradient(150deg, #111, #ff4935 55%, #d7fb45);
}

.detail-brand {
  display: grid;
  place-content: center;
  gap: 12px;
  color: #fff;
  background: var(--blue);
  transform: rotate(5deg);
  font-size: clamp(72px, 8vw, 150px);
  line-height: 0.82;
  font-weight: 900;
}

.detail-content {
  width: min(calc(100% - 80px), 1500px);
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.detail-content article {
  min-height: 230px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(247,247,240,0.5);
  backdrop-filter: blur(14px);
}

.detail-content span {
  display: block;
  margin-bottom: 26px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-content p {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
}

.theme-black .detail-copy,
.theme-black .detail-nav {
  color: var(--white);
}

.theme-black {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(63,98,255,0.28), transparent 24%),
    linear-gradient(135deg, #050505, #161616);
}

.theme-black .detail-nav,
.theme-black .detail-content article {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
}

.theme-white .detail-posters {
  box-shadow: 0 44px 80px rgba(44,57,23,0.28);
}

.theme-blue .detail-copy,
.theme-blue .detail-nav {
  color: #fff;
}

.theme-blue {
  color: #fff;
  background:
    radial-gradient(circle at 20% 28%, rgba(255,255,255,0.18), transparent 20%),
    linear-gradient(135deg, #233cff, #3f62ff);
}

.theme-blue .detail-nav,
.theme-blue .detail-content article {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
}

@media (max-width: 900px) {
  .detail-nav,
  .detail-hero,
  .detail-content {
    width: min(calc(100% - 36px), 1500px);
  }

  .detail-hero,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-device,
  .detail-dashboard,
  .detail-posters,
  .detail-brand {
    min-height: 420px;
  }

  .detail-copy h1 {
    font-size: 54px;
  }
}

.detail-page{
  background: #000000;
}
.container{
  padding: clamp(100px, 10.7vw, 192px) 0;
  max-width: 1100px;
  margin: 0 auto;
}
.container img{
  width: 100%;
}