:root {
  --bowe-green: #d3f91b;
  --bowe-black: #111111;
  --bowe-warm: #f9f9f7;
  --bowe-light: #f2f2f0;
  --bowe-line: rgba(17, 17, 17, 0.08);
  --bowe-heading: "League Spartan", "Century Gothic", sans-serif;
  --bowe-body: "Montserrat", sans-serif;
  --bowe-mono: "JetBrains Mono", monospace;
}

.bowe-kit-container {
  width: min(100% - 10vw, 1920px);
  margin-inline: auto;
}

.bowe-kit-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--bowe-black);
  font-family: var(--bowe-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4em;
  line-height: 1;
  text-transform: uppercase;
}

.bowe-kit-label::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 999px;
  background: var(--bowe-green);
  box-shadow: 0 0 20px rgba(211, 249, 27, 0.7);
}

.bowe-kit-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 42px;
  border: 0;
  border-radius: 0;
  background: var(--bowe-black);
  color: #fff;
  font-family: var(--bowe-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.bowe-kit-button:hover {
  background: var(--bowe-green);
  color: var(--bowe-black);
  transform: translateY(-2px);
}

.bowe-kit-text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--bowe-black);
  font-family: var(--bowe-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-decoration: none;
  text-transform: uppercase;
}

.bowe-kit-text-link--light {
  color: rgba(255, 255, 255, 0.68);
}

.glow-sphere {
  position: absolute;
  pointer-events: none;
  filter: blur(120px);
  background: radial-gradient(circle, var(--bowe-green) 0%, rgba(211, 249, 27, 0) 70%);
  opacity: 0.32;
}

.grain::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px);
  background-size: 42px 42px, 56px 56px;
  opacity: 0.24;
}

.bowe-kit-hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: var(--bowe-black);
  color: #fff;
}

.bowe-kit-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1500ms cubic-bezier(0.16, 1, 0.3, 1), transform 2500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bowe-kit-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.bowe-kit-hero__media,
.bowe-kit-hero__media img,
.bowe-kit-hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bowe-kit-hero__media img,
.bowe-kit-hero__media video {
  object-fit: cover;
  opacity: 0.42;
  filter: grayscale(0.45) contrast(1.06);
}

.bowe-kit-hero__media span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.9));
}

.bowe-kit-hero__micro {
  position: absolute;
  top: 138px;
  z-index: 6;
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--bowe-mono);
  font-size: 7.2px;
  font-weight: 500;
  letter-spacing: 0.6em;
  text-transform: uppercase;
}

.bowe-kit-hero__micro--left {
  left: 8vw;
}

.bowe-kit-hero__micro--right {
  right: 8vw;
}

.bowe-kit-hero__label {
  position: absolute;
  bottom: 42px;
  left: 8vw;
  z-index: 6;
  margin: 0;
  color: #fff;
  font-family: var(--bowe-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.bowe-kit-hero__label::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 14px;
  content: "";
  border-radius: 999px;
  background: var(--bowe-green);
  box-shadow: 0 0 16px rgba(211, 249, 27, 0.9);
}

.bowe-kit-hero__content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4vw;
  text-align: center;
}

.bowe-kit-hero__content h1 {
  max-width: 92vw;
  margin: 0;
  color: #fff;
  font-family: var(--bowe-heading);
  font-size: clamp(54px, 8vw, 154px);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 0.92;
  text-transform: lowercase;
}

.bowe-kit-hero__actions {
  position: absolute;
  left: 50%;
  bottom: 158px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  transform: translateX(-50%);
}

.bowe-kit-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 8;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
}

.bowe-kit-hero__dots button {
  width: 22px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  transition: width 300ms ease, background-color 300ms ease;
}

.bowe-kit-hero__dots button.is-active {
  width: 62px;
  background: var(--bowe-green);
}

.bowe-kit-hero__scroll {
  position: absolute;
  right: 8vw;
  bottom: 40px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.bowe-kit-hero__scroll span {
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.26);
  font-family: var(--bowe-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.bowe-kit-hero__scroll i {
  width: 1px;
  height: 62px;
  background: rgba(255, 255, 255, 0.22);
}

.bowe-kit-editorial-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 210px 0 140px;
  background: var(--bowe-warm);
}

.bowe-kit-editorial-hero--dark {
  background: var(--bowe-black);
  color: #fff;
}

.bowe-kit-editorial-hero__ghost {
  position: absolute;
  top: 70px;
  left: 50%;
  margin: 0;
  color: rgba(17, 17, 17, 0.035);
  font-family: var(--bowe-heading);
  font-size: clamp(120px, 18vw, 330px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 0.8;
  white-space: nowrap;
  transform: translateX(-50%);
}

.bowe-kit-editorial-hero--dark .bowe-kit-editorial-hero__ghost {
  color: rgba(255, 255, 255, 0.045);
}

.bowe-kit-editorial-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 10vw;
  align-items: end;
}

.bowe-kit-editorial-hero h1 {
  max-width: 900px;
  margin: 34px 0 0;
  font-family: var(--bowe-heading);
  font-size: clamp(70px, 10vw, 168px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: lowercase;
}

.bowe-kit-editorial-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  filter: grayscale(1);
}

.bowe-kit-editorial-hero h2 {
  margin: 42px 0 24px;
  font-family: var(--bowe-heading);
  font-size: clamp(38px, 5vw, 82px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.96;
}

.bowe-kit-editorial-hero p:not(.bowe-kit-editorial-hero__ghost):not(.bowe-kit-label) {
  max-width: 640px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--bowe-body);
  font-size: clamp(17px, 1.3vw, 24px);
  font-weight: 300;
  line-height: 1.8;
}

.bowe-kit-editorial-hero--dark p:not(.bowe-kit-editorial-hero__ghost):not(.bowe-kit-label) {
  color: rgba(255, 255, 255, 0.68);
}

.bowe-kit-catalog {
  position: relative;
  overflow: hidden;
  padding: 120px 0 160px;
  border-bottom: 1px solid var(--bowe-line);
  background: var(--bowe-warm);
}

.bowe-kit-catalog__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 92px;
}

.bowe-kit-catalog h2 {
  margin: 20px 0 0;
  font-family: var(--bowe-heading);
  font-size: clamp(58px, 9vw, 150px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: lowercase;
}

.bowe-kit-catalog__tabs {
  display: flex;
  gap: 44px;
}

.bowe-kit-catalog__tabs button {
  padding: 0 0 16px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(17, 17, 17, 0.34);
  font-family: var(--bowe-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.bowe-kit-catalog__tabs button.is-active {
  border-color: var(--bowe-green);
  color: var(--bowe-black);
}

.bowe-kit-catalog__stage {
  position: relative;
}

.bowe-kit-catalog__item {
  display: none;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 14vw;
  align-items: center;
}

.bowe-kit-catalog__item.is-active {
  display: grid;
}

.bowe-kit-catalog__media {
  width: min(100%, 430px);
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(17, 17, 17, 0.18);
}

.bowe-kit-catalog__media img,
.bowe-kit-catalog__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bowe-kit-catalog__copy h3 {
  max-width: 760px;
  margin: 0 0 48px;
  font-family: var(--bowe-heading);
  font-size: clamp(54px, 7vw, 116px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
  text-transform: lowercase;
}

.bowe-kit-catalog__copy p {
  max-width: 700px;
  margin: 0 0 54px;
  color: rgba(17, 17, 17, 0.56);
  font-family: var(--bowe-body);
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 300;
  line-height: 1.8;
}

.bowe-kit-catalog__copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.bowe-kit-catalog__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 16px;
}

.bowe-kit-catalog__controls button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--bowe-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--bowe-black);
  transition: background-color 250ms ease;
}

.bowe-kit-catalog__controls button:hover {
  background: var(--bowe-green);
}

.bowe-kit-bento {
  position: relative;
  overflow: hidden;
  padding: 130px 0 150px;
  background: transparent;
}

.bowe-kit-bento::after {
  position: absolute;
  right: -12vw;
  bottom: -10vw;
  width: 42vw;
  height: 42vw;
  content: "";
  border-radius: 999px;
  background: rgba(211, 249, 27, 0.12);
  filter: blur(100px);
}

.bowe-kit-bento__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 86px;
}

.bowe-kit-bento__heading h2 {
  margin: 0;
  font-family: var(--bowe-heading);
  font-size: clamp(54px, 7vw, 132px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
  text-transform: lowercase;
}

.bowe-kit-bento__heading p {
  margin: 0;
  color: rgba(17, 17, 17, 0.34);
  font-family: var(--bowe-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.bowe-kit-bento__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  min-height: 900px;
}

.bowe-kit-bento__card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  background: #fff;
  color: #fff;
  text-decoration: none;
}

.bowe-kit-bento__card--1 {
  grid-column: span 8;
  grid-row: span 2;
}

.bowe-kit-bento__card--2 {
  grid-column: span 4;
}

.bowe-kit-bento__card--3 {
  grid-column: span 12;
}

.bowe-kit-bento__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 1000ms ease;
}

.bowe-kit-bento__card:hover img {
  transform: scale(1.055);
}

.bowe-kit-bento__card span {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.18);
  transition: background-color 400ms ease;
}

.bowe-kit-bento__card:hover span {
  background: rgba(17, 17, 17, 0.34);
}

.bowe-kit-bento__card div {
  position: absolute;
  left: clamp(32px, 4vw, 72px);
  right: clamp(32px, 4vw, 72px);
  bottom: clamp(32px, 4vw, 72px);
}

.bowe-kit-bento__card h3 {
  margin: 0 0 14px;
  font-family: var(--bowe-heading);
  font-size: clamp(36px, 5vw, 86px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.92;
  text-transform: lowercase;
}

.bowe-kit-bento__card p {
  max-width: 540px;
  margin: 0;
  font-family: var(--bowe-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-transform: uppercase;
}

.bowe-kit-process {
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
  background: var(--bowe-warm);
}

.bowe-kit-process__orb {
  position: absolute;
  top: 150px;
  left: 50%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  transform: translateX(-50%);
}

.bowe-kit-process__orb::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 999px;
  background: var(--bowe-green);
  box-shadow: 0 0 32px rgba(211, 249, 27, 0.82);
}

.bowe-kit-process__head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 170px;
  text-align: center;
}

.bowe-kit-process__head h2 {
  margin: 64px 0 0;
  font-family: var(--bowe-heading);
  font-size: clamp(58px, 7vw, 130px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.92;
  text-transform: lowercase;
}

.bowe-kit-process__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.bowe-kit-process__cards article {
  min-height: 240px;
  padding: 44px 36px;
  border: 1px solid var(--bowe-line);
  background: rgba(255, 255, 255, 0.48);
  transition: border-color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.bowe-kit-process__cards article:hover {
  border-color: rgba(211, 249, 27, 0.75);
  background: rgba(211, 249, 27, 0.08);
  transform: translateY(-4px);
}

.bowe-kit-process__cards span {
  display: block;
  margin-bottom: 20px;
  color: #8cac00;
  font-family: var(--bowe-heading);
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
}

.bowe-kit-process__cards h3 {
  margin: 0 0 18px;
  font-family: var(--bowe-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.bowe-kit-process__cards p {
  margin: 0;
  color: rgba(17, 17, 17, 0.56);
  font-family: var(--bowe-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}

.bowe-kit-grid {
  padding: 130px 0;
  border-top: 1px solid var(--bowe-line);
  background: var(--bowe-warm);
}

.bowe-kit-grid__heading {
  margin-bottom: 80px;
}

.bowe-kit-grid__heading h2 {
  max-width: 980px;
  margin: 28px 0 0;
  font-family: var(--bowe-heading);
  font-size: clamp(58px, 8vw, 140px);
  font-weight: 300;
  line-height: 0.9;
  text-transform: lowercase;
}

.bowe-kit-grid__items {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.1vw, 34px);
  align-items: start;
}

.bowe-kit-grid__card {
  display: block;
  overflow: hidden;
  grid-column: span 4;
  border: 1px solid var(--bowe-line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--bowe-black);
  text-decoration: none;
}

.bowe-kit-grid__card:nth-child(1),
.bowe-kit-grid__card:nth-child(6) {
  grid-column: span 6;
}

.bowe-kit-grid__card:nth-child(2) {
  margin-top: clamp(56px, 8vw, 140px);
}

.bowe-kit-grid__card:nth-child(3) {
  margin-top: clamp(18px, 4vw, 78px);
}

.bowe-kit-grid__card:nth-child(4) {
  grid-column: span 5;
  margin-top: clamp(24px, 5vw, 96px);
}

.bowe-kit-grid__card:nth-child(5) {
  grid-column: span 7;
}

.bowe-kit-grid__card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: transform 700ms ease, filter 700ms ease;
}

.bowe-kit-grid__card:nth-child(1) img,
.bowe-kit-grid__card:nth-child(5) img,
.bowe-kit-grid__card:nth-child(6) img {
  aspect-ratio: 16 / 10;
}

.bowe-kit-grid__card:hover img {
  filter: grayscale(0);
  transform: scale(1.045);
}

.bowe-kit-grid__card div {
  padding: 28px;
}

.bowe-kit-grid__card span {
  color: #8cac00;
  font-family: var(--bowe-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.bowe-kit-grid__card h3 {
  margin: 22px 0 16px;
  font-family: var(--bowe-heading);
  font-size: clamp(36px, 4vw, 68px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
  text-transform: lowercase;
}

.bowe-kit-grid__card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.56);
  font-family: var(--bowe-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.bowe-kit-shortcode-panel {
  width: min(100% - 10vw, 1360px);
  margin: 0 auto 120px;
  padding: clamp(32px, 5vw, 76px);
  border: 1px solid var(--bowe-line);
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1024px) {
  .bowe-kit-container {
    width: min(100% - 48px, 1920px);
  }

  .bowe-kit-hero__content h1 {
    letter-spacing: 0.12em;
  }

  .bowe-kit-editorial-hero__grid,
  .bowe-kit-catalog__item {
    grid-template-columns: 1fr;
  }

  .bowe-kit-bento__grid,
  .bowe-kit-process__cards,
  .bowe-kit-grid__items {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bowe-kit-grid__card,
  .bowe-kit-grid__card:nth-child(1),
  .bowe-kit-grid__card:nth-child(4),
  .bowe-kit-grid__card:nth-child(5),
  .bowe-kit-grid__card:nth-child(6) {
    grid-column: auto;
    margin-top: 0;
  }

  .bowe-kit-bento__card,
  .bowe-kit-bento__card--1,
  .bowe-kit-bento__card--2,
  .bowe-kit-bento__card--3 {
    grid-column: auto;
    min-height: 460px;
  }

  .bowe-kit-process__head {
    margin-bottom: 80px;
  }

  .bowe-kit-process__orb {
    width: 84vw;
  }
}

@media (max-width: 767px) {
  .bowe-kit-container {
    width: min(100% - 28px, 1920px);
  }

  .bowe-kit-hero {
    min-height: 720px;
  }

  .bowe-kit-hero__micro,
  .bowe-kit-hero__scroll {
    display: none;
  }

  .bowe-kit-hero__content h1 {
    font-size: clamp(46px, 15vw, 78px);
    letter-spacing: 0.04em;
  }

  .bowe-kit-hero__actions {
    bottom: 118px;
    flex-direction: column;
    width: min(100% - 48px, 420px);
    gap: 24px;
  }

  .bowe-kit-hero__actions .bowe-kit-button {
    width: 100%;
  }

  .bowe-kit-hero__label {
    left: 24px;
    bottom: 34px;
  }

  .bowe-kit-hero__dots {
    display: none;
  }

  .bowe-kit-catalog__heading,
  .bowe-kit-bento__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .bowe-kit-catalog__tabs {
    width: 100%;
    overflow-x: auto;
  }
}
