:root {
  --notspent-bg: #000000;
  --notspent-text: #ffffff;
  --notspent-text-muted: rgba(255, 255, 255, 0.78);
  --notspent-text-soft: rgba(255, 255, 255, 0.7);
  --notspent-section-gap: 88px;
}

* {
  box-sizing: border-box;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background: var(--notspent-bg);
  color: var(--notspent-text);
  font-family: "Satoshi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.notspent-page {
  width: 100%;
  background: var(--notspent-bg);
}

.notspent-shell {
  width: min(1512px, 100%);
  margin: 0 auto;
  padding: 83px 48px 96px;
}

.notspent-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notspent-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--notspent-text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  width: fit-content;
  transform: translateY(-4px);
}

.notspent-back__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notspent-back__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.notspent-title {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.notspent-description {
  color: var(--notspent-text-soft);
}

.notspent-description p {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}

.notspent-description p + p {
  margin-top: 16px;
}

.notspent-meta {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.notspent-meta__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 40px;
}

.notspent-meta__item--wide {
  min-width: 155px;
}

.notspent-meta__label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.notspent-meta__value {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.notspent-hero {
  margin-top: 56px;
  padding: 32px 0;
}

.notspent-hero__image {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: min(903px, 62vw);
}

.notspent-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.notspent-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 24px;
  align-items: center;
  padding: var(--notspent-section-gap) 0;
}

.notspent-copy {
  padding: 48px 64px;
}

.notspent-copy__title {
  margin: 0 0 19px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.notspent-copy__paragraph,
.notspent-copy__body p {
  margin: 0;
  color: var(--notspent-text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.notspent-copy__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notspent-copy__list {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--notspent-text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.notspent-copy__list--outcome {
  gap: 9px;
}

.notspent-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.notspent-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.notspent-card--square {
  width: 100%;
  max-width: 696px;
  aspect-ratio: 1 / 1;
  justify-self: center;
}

.notspent-logo-grid {
  width: 100%;
  max-width: 696px;
  min-height: 684px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  justify-content: center;
  align-content: center;
  gap: 90px;
  justify-self: center;
}

.notspent-logo-card {
  width: 190px;
  height: 190px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(80, 80, 80, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.notspent-logo-card img {
  width: min(111px, 72%);
  height: min(111px, 72%);
  object-fit: contain;
}

.notspent-outcome {
  padding: var(--notspent-section-gap) 0;
}

.notspent-copy--outcome {
  padding: 48px 64px;
}

.notspent-gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 128px;
}

.notspent-gallery__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.notspent-gallery__row--triple .notspent-card--portrait {
  width: min(306px, calc((100% - 48px) / 3));
  aspect-ratio: 306 / 586;
}

.notspent-gallery__row--single {
  justify-content: center;
}

.notspent-card--wide {
  width: min(1307px, 100%);
  aspect-ratio: 1307 / 840;
}

@media (max-width: 1200px) {
  :root {
    --notspent-section-gap: 72px;
  }

  .notspent-shell {
    padding: 64px 32px 72px;
  }

  .notspent-copy {
    padding: 24px;
  }

  .notspent-copy--outcome {
    padding: 24px;
  }

  .notspent-hero__image {
    height: min(640px, 62vw);
  }

  .notspent-gallery {
    padding: 24px 32px;
  }

  .notspent-logo-grid {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 160px));
    gap: 28px;
  }

  .notspent-logo-card {
    width: 160px;
    height: 160px;
    border-radius: 12px;
  }
}

@media (max-width: 900px) {
  :root {
    --notspent-section-gap: 56px;
  }

  .notspent-shell {
    padding: 56px 24px 56px;
  }

  .notspent-title {
    font-size: clamp(32px, 5vw, 40px);
  }

  .notspent-meta {
    margin-top: 28px;
    gap: 48px;
  }

  .notspent-hero {
    margin-top: 36px;
  }

  .notspent-hero__image {
    height: min(470px, 58vw);
  }

  .notspent-block {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: var(--notspent-section-gap) 0;
  }

  .notspent-copy {
    padding: 8px 0;
  }

  .notspent-copy--outcome {
    padding: 8px 0;
  }

  .notspent-copy__title {
    margin-bottom: 14px;
  }

  .notspent-copy__paragraph,
  .notspent-copy__body p,
  .notspent-copy__list {
    line-height: 1.35;
  }

  .notspent-card--square {
    max-width: none;
  }

  .notspent-logo-grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .notspent-logo-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .notspent-gallery {
    padding: 16px 0;
    gap: 16px;
  }

  .notspent-gallery__row {
    gap: 16px;
  }
}

@media (max-width: 680px) {
  .notspent-shell {
    padding: 48px 16px 48px;
  }

  .notspent-back {
    transform: translateY(0);
  }

  .notspent-meta {
    gap: 28px;
    flex-wrap: wrap;
  }

  .notspent-hero {
    margin-top: 24px;
    padding: 20px 0;
  }

  .notspent-hero__image {
    height: min(360px, 64vw);
    border-radius: 12px;
  }

  .notspent-card {
    border-radius: 12px;
  }

  .notspent-gallery__row--triple {
    flex-direction: column;
    align-items: center;
  }

  .notspent-gallery__row--triple .notspent-card--portrait {
    width: min(100%, 300px);
  }

  .notspent-card--wide {
    width: 100%;
  }
}
