

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.hero__spotlight {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(215, 255, 69, 0.17),
    transparent 67%
  );
  left: var(--spot-x, 50%);
  top: var(--spot-y, 40%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition:
    left 0.18s linear,
    top 0.18s linear;
}
.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 65px;
  padding-block: 65px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
}
.hero__eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--acid);
}
.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6.6vw, 90px);
  font-weight: 850;
  letter-spacing: -4px;
  line-height: 1.14;
}
.hero h1 span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.65);
}
.hero__lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: #9eaaaf;
  font-size: 16px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  padding-inline: 23px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.2s,
    box-shadow 0.25s;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(110%) skewX(-20deg);
  transition: transform 0.5s;
}
.button:hover::before {
  transform: translateX(-110%) skewX(-20deg);
}
.button--acid {
  color: var(--black);
  background: var(--acid);
  box-shadow: 0 14px 35px rgba(215, 255, 69, 0.18);
}
.button--acid:hover {
  box-shadow: 0 20px 45px rgba(215, 255, 69, 0.3);
}
.button--line {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}
.button--black {
  color: var(--white);
  background: var(--black);
}
.button--paper {
  color: var(--black);
  background: var(--paper);
}
.hero__proof {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 38px;
}
.avatar-stack {
  display: flex;
  direction: ltr;
}
.avatar-stack i {
  width: 35px;
  height: 35px;
  margin-left: -9px;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: linear-gradient(135deg, #405663, #1b2c36);
}
.avatar-stack i:nth-child(2) {
  background: linear-gradient(135deg, #ff805d, #a83620);
}
.avatar-stack i:nth-child(3) {
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--acid);
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}
.hero__proof p {
  margin: 0;
  color: #79858a;
  font-size: 9px;
}
.hero__proof strong {
  display: block;
  color: #dce2e4;
  font-size: 10px;
}
.hero-stage {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}
.hero-stage__frame {
  position: absolute;
  inset: 20px 20px 20px 65px;
  overflow: hidden;
  border-radius: 190px 20px 190px 20px;
  background: #222;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.6);
  transform: rotateY(5deg) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 0.25s ease;
}
.hero-stage__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(20deg, rgba(0, 0, 0, 0.78), transparent 55%),
    linear-gradient(120deg, rgba(215, 255, 69, 0.16), transparent 42%);
}
.hero-stage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}
.hero-stage__tag {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 0;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--acid);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}
.hero-stage__product {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 8px;
  width: 215px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(15, 18, 19, 0.74);
  backdrop-filter: blur(17px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}
.hero-stage__product img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 11px;
}
.hero-stage__product div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 3px 2px;
}
.hero-stage__product small,
.hero-stage__product strong {
  display: block;
}
.hero-stage__product small {
  color: #7f8b90;
  font-size: 7px;
}
.hero-stage__product strong {
  font-size: 10px;
}
.hero-stage__product b {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--orange);
  font-size: 15px;
}
.hero-stage__vertical {
  position: absolute;
  left: 4px;
  top: 35px;
  color: #5c666a;
  font-size: 8px;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
}

.signal-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f1213;
}
.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.signal-item {
  min-height: 83px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-inline: 27px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.signal-item:last-child {
  border-left: 0;
}
.signal-item span {
  color: var(--acid);
  font-size: 18px;
}
.signal-item strong,
.signal-item small {
  display: block;
}
.signal-item strong {
  font-size: 10px;
}
.signal-item small {
  color: #697579;
  font-size: 8px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--acid);
  color: var(--black);
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 14px;
  animation: marquee 24s linear infinite;
  font-size: 13px;
  font-weight: 850;
}
.marquee__track span {
  white-space: nowrap;
}
.marquee__track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
@keyframes marquee {
  to {
    transform: translateX(50%);
  }
}

.section {
  padding-block: 115px;
}
.section--dark {
  background: var(--black);
  color: var(--white);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.3px;
}
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(255, 93, 53, 0.12);
}
.section-title {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 850;
  letter-spacing: -2.2px;
}
.section-title em {
  color: var(--orange);
  font-style: normal;
}
.section-title--light {
  color: var(--white);
}
.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}
.section-intro > p {
  max-width: 570px;
  margin: 0;
  color: #747f84;
  font-size: 15px;
}

.product-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  grid-template-rows: auto minmax(530px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 35px 80px rgba(23, 32, 38, 0.08);
}
.product-list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
  background: #ece9df;
  border-bottom: 1px solid var(--line);
}
.product-list__title {
  display: none;
}
.product-select {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 0;
  border-left: 1px solid rgba(20, 28, 32, 0.09);
  color: #6e777b;
  background: transparent;
  text-align: right;
  transition: 0.3s;
}
.product-select:last-child {
  border-left: 0;
}
.product-select::after {
  content: "";
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--acid);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.product-select span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #818a8e;
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
}
.product-select__copy {
  min-width: 0;
}
.product-select strong,
.product-select small {
  display: block;
}
.product-select strong {
  font-size: 13px;
}
.product-select small {
  margin-top: 2px;
  color: #979d9f;
  font-size: 9px;
}
.product-select:hover,
.product-select.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}
.product-select.is-active::after {
  transform: scaleX(1);
}
.product-select.is-active span {
  color: var(--black);
  background: var(--acid);
}
.product-canvas {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 45%,
    #fff 0 22%,
    #eceff0 64%,
    #dfe4e5 100%
  );
}
.product-canvas::before {
  content: "PUKASAZE";
  position: absolute;
  color: rgba(20, 28, 32, 0.045);
  font-size: clamp(65px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -8px;
  transform: rotate(-12deg);
}
.product-canvas__ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(20, 28, 32, 0.1);
  border-radius: 50%;
}
.product-canvas__ring::before,
.product-canvas__ring::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(20, 28, 32, 0.08);
  border-radius: 50%;
}
.product-canvas__ring::before {
  inset: 40px;
}
.product-canvas__ring::after {
  inset: 85px;
}
.product-canvas img {
  position: absolute;
  z-index: 1;
  inset: 34px;
  width: calc(100% - 68px);
  height: calc(100% - 68px);
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(0.75) contrast(1.04);
  box-shadow: 0 28px 55px rgba(21, 34, 40, 0.2);
  transition:
    opacity 0.25s,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.4s;
}
.product-canvas:hover img {
  filter: saturate(1) contrast(1.02);
}
.product-canvas::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 34px;
  border-radius: 18px;
  background: linear-gradient(0deg, rgba(7, 13, 16, 0.56), transparent 50%);
  pointer-events: none;
}
.product-canvas.is-changing img {
  opacity: 0;
  transform: translateY(25px) rotate(4deg) scale(0.94);
}
.product-canvas__code {
  position: absolute;
  z-index: 3;
  right: 54px;
  bottom: 52px;
  padding: 7px 12px;
  border-radius: 30px;
  color: var(--white);
  background: rgba(10, 15, 17, 0.76);
  backdrop-filter: blur(8px);
  font-size: 9px;
  letter-spacing: 1px;
}
.product-details {
  position: relative;
  padding: 42px 35px;
  background: var(--black);
  color: #a2adb1;
}
.product-details::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--product-accent, var(--acid));
}
.product-details__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.product-details__count {
  color: #4e595d;
  font-size: 48px;
  font-weight: 100;
  line-height: 1;
}
.product-details__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #c7d0d3;
  font-size: 9px;
}
.product-details__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--product-accent, var(--acid));
  box-shadow: 0 0 0 5px
    color-mix(in srgb, var(--product-accent, var(--acid)) 14%, transparent);
}
.product-details h3 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 29px;
}
.product-details > p {
  min-height: 88px;
  margin-bottom: 27px;
  font-size: 14px;
  line-height: 2;
}
.spec-list {
  display: grid;
  gap: 0;
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.spec-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}
.spec-list span {
  color: #69767b;
}
.spec-list strong {
  color: #dce3e5;
  font-weight: 650;
}
.product-details__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.product-details__link {
  color: #879398;
  font-size: 10px;
  font-weight: 700;
}
.product-details__link:hover {
  color: var(--acid);
}

.story {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
  min-height: 650px;
}
.story-visual__main {
  position: absolute;
  inset: 0 70px 0 0;
  overflow: hidden;
  border-radius: 20px 170px 20px 20px;
  box-shadow: 0 35px 80px rgba(28, 35, 38, 0.2);
}
.story-visual__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}
.story-visual__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 15, 20, 0.65), transparent 65%);
}
.story-visual__small {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 42px;
  width: 250px;
  height: 280px;
  overflow: hidden;
  border: 10px solid var(--paper-2);
  border-radius: 120px 18px 18px 18px;
}
.story-visual__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-stamp {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 25px;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(12, 17, 19, 0.35);
  backdrop-filter: blur(12px);
  text-align: center;
}
.story-stamp strong {
  font-size: 13px;
}
.story-stamp small {
  display: block;
  color: var(--acid);
  font-size: 8px;
}
.story-copy .section-title {
  margin-bottom: 24px;
}
.story-copy > p {
  margin-bottom: 28px;
  color: #5f696e;
  font-size: 15px;
}
.story-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.story-points div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
}
.story-points span {
  display: block;
  color: var(--orange);
  font-size: 18px;
}
.story-points strong {
  font-size: 12px;
}
.story-points small {
  display: block;
  color: #7a8487;
  font-size: 10px;
}

.projects {
  overflow: hidden;
}
.projects__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}
.project-controls {
  display: flex;
  gap: 8px;
}
.project-controls button {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  transition: 0.25s;
}
.project-controls button:hover {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
}
.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(69vw, 740px);
  gap: 18px;
  overflow-x: auto;
  padding-inline: calc((100vw - min(calc(100vw - 40px), var(--container))) / 2);
  padding-bottom: 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.project-track::-webkit-scrollbar {
  display: none;
}
.project-case {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
  scroll-snap-align: center;
  background: #222;
}
.project-case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  transition:
    transform 0.8s,
    filter 0.6s;
}
.project-case:hover img {
  transform: scale(1.055);
  filter: saturate(1);
}
.project-case::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 10, 13, 0.92), transparent 65%);
}
.project-case__top {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.project-case__top span {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  font-size: 8px;
}
.project-case__top b {
  font-size: 28px;
  font-weight: 100;
}
.project-case__body {
  position: absolute;
  z-index: 3;
  right: 28px;
  left: 28px;
  bottom: 27px;
  color: #bec8cc;
}
.project-case__body small {
  color: var(--acid);
  font-size: 10px;
}
.project-case__body h3 {
  margin: 5px 0 8px;
  color: var(--white);
  font-size: 25px;
}
.project-case__body p {
  margin: 0;
  font-size: 12px;
}

.resources {
  position: relative;
  overflow: hidden;
  background: var(--acid);
}
.resources::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -200px;
  top: -260px;
  border: 110px solid rgba(11, 13, 14, 0.05);
  border-radius: 50%;
}
.resources__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
}
.resources .section-label {
  color: var(--black);
}
.resources .section-label::before {
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.08);
}
.resources .section-title {
  margin-bottom: 18px;
}
.resources__intro p {
  color: #465216;
  font-size: 14px;
}
.resource-list {
  display: grid;
  gap: 10px;
}
.resource-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border: 1px solid rgba(11, 13, 14, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.resource-item:hover {
  padding-right: 24px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(41, 49, 12, 0.12);
}
.resource-item__type {
  width: 55px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--orange);
  font-size: 9px;
  font-weight: 900;
}
.resource-item small {
  color: #758046;
  font-size: 9px;
}
.resource-item h3 {
  margin: 0;
  font-size: 14px;
}
.resource-item p {
  margin: 0;
  color: #667039;
  font-size: 10px;
}
.resource-item > b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
}

.journal {
  background: var(--paper);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 32, 38, 0.055);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.article:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(23, 32, 38, 0.12);
}
.article__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #d7dcdd;
}
.article__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 12, 16, 0.28), transparent 60%);
  pointer-events: none;
}
.article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76);
  transition: 0.7s;
}
.article:hover img {
  transform: scale(1.055);
  filter: saturate(1);
}
.article__tag {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 30px;
  color: var(--black);
  background: var(--acid);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
  font-size: 10px;
  font-weight: 800;
}
.article__body {
  display: flex;
  min-height: 275px;
  flex-direction: column;
  padding: 24px 25px 25px;
  color: #6d787c;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 13px;
  color: #8a9498;
  font-size: 10px;
}
.article__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article__meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}
.article__body h3 {
  margin: 11px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.6;
}
.article__excerpt {
  margin: 0 0 20px;
  color: #6c777b;
  font-size: 13px;
  line-height: 2;
}
.article__body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}
.article__body a:hover {
  gap: 11px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
  background: var(--orange);
  color: var(--white);
}
.cta::before {
  content: "PUKA";
  position: absolute;
  left: -40px;
  top: -80px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 260px;
  font-weight: 900;
  letter-spacing: -20px;
}
.cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta small {
  font-size: 9px;
}
.cta h2 {
  margin: 5px 0 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 53px);
  letter-spacing: -2px;
}
.cta__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.cta__phone small,
.cta__phone strong {
  display: block;
}
.cta__phone small {
  color: #ffc9ba;
  font-size: 7px;
}
.cta__phone strong {
  font-size: 19px;
}
.hero {
  background: linear-gradient(135deg, #f7f8f3 0%, #eef2ef 100%);
  color: var(--ink);
}
.hero__noise {
  opacity: 0.025;
}
.hero__spotlight {
  background: radial-gradient(
    circle,
    rgba(82, 104, 255, 0.11),
    transparent 67%
  );
}
.hero__eyebrow {
  color: var(--orange);
  font-size: 12px;
}
.hero__eyebrow::before {
  background: var(--orange);
}
.hero h1 span {
  color: var(--blue);
  -webkit-text-stroke: 0;
}
.hero__lead {
  color: #59666b;
  font-size: 17px;
}
.button--line {
  color: var(--ink);
  border-color: rgba(18, 28, 32, 0.18);
  background: rgba(255, 255, 255, 0.56);
}
.hero__proof p {
  color: #667277;
  font-size: 12px;
}
.hero__proof strong {
  color: var(--ink);
  font-size: 13px;
}
.avatar-stack i {
  border-color: #f5f7f3;
}
.hero-stage__frame {
  box-shadow: 0 35px 90px rgba(35, 47, 52, 0.2);
}
.hero-stage__product {
  border-color: rgba(18, 28, 32, 0.1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 55px rgba(35, 47, 52, 0.18);
}
.hero-stage__product small {
  color: #748085;
  font-size: 10px;
}
.hero-stage__product strong {
  font-size: 13px;
}
.hero-stage__vertical {
  color: #758085;
}
.signal-strip {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 -1px 0 rgba(20, 30, 34, 0.03);
}
.signal-item {
  min-height: 102px;
  border-left-color: var(--line);
}
.signal-item span {
  color: var(--orange);
  font-size: 25px;
}
.signal-item strong {
  font-size: 15px;
}
.signal-item small {
  color: #6b777b;
  font-size: 12px;
}
.section--dark,
.projects.section--dark {
  background: #edf1ee;
  color: var(--ink);
}
.projects .section-title--light {
  color: var(--ink);
}
.project-controls button {
  width: 49px;
  height: 49px;
  border-color: rgba(18, 28, 32, 0.16);
  color: var(--ink);
  background: #fff;
}
.project-controls button:hover {
  background: var(--acid);
}

/* Ten-product browser */
.product-lab {
  grid-template-rows: auto minmax(530px, 1fr);
}
.product-browser {
  grid-column: 1/-1;
  padding: 17px 18px 13px;
  border-bottom: 1px solid var(--line);
  background: #f0f2ed;
}
.product-browser__top,
.product-browser__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.product-browser__top {
  margin-bottom: 12px;
  padding-inline: 3px;
}
.product-browser__title strong,
.product-browser__title small {
  display: block;
}
.product-browser__title strong {
  font-size: 14px;
}
.product-browser__title small {
  color: #768185;
  font-size: 11px;
}
.product-browser__controls {
  display: flex;
  gap: 7px;
}
.product-browser__controls button {
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  transition: 0.25s;
}
.product-browser__controls button:hover {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
}
.product-list {
  display: flex;
  grid-column: auto;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  background: transparent;
  border: 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #bbc3bf transparent;
}
.product-list::-webkit-scrollbar {
  height: 4px;
}
.product-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bbc3bf;
}
.product-select {
  flex: 0 0 235px;
  scroll-snap-align: start;
  padding: 12px 13px;
  border: 1px solid rgba(18, 28, 32, 0.1) !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}
.product-select::after {
  right: 12px;
  left: 12px;
}
.product-select:hover,
.product-select.is-active {
  background: #fff;
  box-shadow: 0 12px 28px rgba(28, 39, 43, 0.08);
}
.product-select strong {
  font-size: 14px;
}
.product-select small {
  font-size: 10px;
}
.product-browser__bottom {
  padding: 7px 3px 0;
}
.product-browser__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #727e82;
  font-size: 11px;
}
.product-browser__hint::before {
  content: "\2194";
  color: var(--orange);
  font-size: 16px;
}
.product-browser__all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}
.product-browser__all:hover {
  color: var(--orange);
}
.product-details {
  border-right: 1px solid var(--line);
  color: #5f6c70;
  background: #fff;
}
.product-details__count {
  color: #c5cdca;
}
.product-details__status {
  border-color: var(--line);
  color: #536065;
  background: #f4f6f2;
}
.product-details h3 {
  color: var(--ink);
}
.spec-list {
  border-top-color: var(--line);
}
.spec-list div {
  border-bottom-color: var(--line);
}
.spec-list span {
  color: #7a8588;
}
.spec-list strong {
  color: var(--ink);
}
.product-details__link {
  color: #5f6b70;
}
.product-details__link:hover {
  color: var(--orange);
}

@media (max-width: 1100px) {
  .hero__grid {
    gap: 30px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-stage__frame {
    inset: 40px 10px 40px 35px;
  }
  .product-lab {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }
  .product-select {
    padding-inline: 10px;
  }
  .product-select small {
    display: none;
  }
  .product-details {
    padding: 35px 25px;
  }
  .story__grid {
    gap: 45px;
  }
}
@media (max-width: 850px) {
  .hero {
    min-height: auto;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 70px;
  }
  .hero-stage {
    min-height: 520px;
  }
  .hero-stage__frame {
    inset: 20px 60px 20px 80px;
  }
  .signal-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .signal-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .section {
    padding-block: 85px;
  }
  .section-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .product-lab {
    grid-template-columns: 1fr;
    grid-template-rows: auto 500px auto;
  }
  .product-list {
    grid-column: 1;
    grid-template-columns: repeat(2, 1fr);
  }
  .product-select:nth-child(2) {
    border-left: 0;
  }
  .product-canvas,
  .product-details {
    grid-column: 1;
  }
  .product-details > p {
    min-height: 0;
  }
  .product-details__foot {
    justify-content: flex-start;
  }
  .story__grid {
    grid-template-columns: 1fr;
  }
  .story-visual {
    min-height: 600px;
  }
  .resources__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .hero__grid {
    padding-block: 52px;
  }
  .hero h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }
  .hero__lead {
    font-size: 14px;
  }
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero__actions .button {
    width: 100%;
  }
  .hero__proof {
    justify-content: center;
  }
  .hero-stage {
    min-height: 430px;
  }
  .hero-stage__frame {
    inset: 12px 15px 45px;
    border-radius: 130px 18px 130px 18px;
  }
  .hero-stage__tag {
    width: 91px;
    height: 91px;
    top: 0;
    right: 0;
    font-size: 9px;
  }
  .hero-stage__product {
    left: 8px;
    bottom: 5px;
    width: 165px;
  }
  .hero-stage__product img {
    height: 100px;
  }
  .hero-stage__vertical {
    display: none;
  }
  .signal-strip__grid {
    grid-template-columns: 1fr;
  }
  .signal-item {
    min-height: 72px;
    border-left: 0;
  }
  .marquee__track {
    font-size: 10px;
  }
  .section {
    padding-block: 68px;
  }
  .section-title {
    font-size: 34px;
    letter-spacing: -1.4px;
  }
  .product-lab {
    display: block;
  }
  .product-list {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 9px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }
  .product-list__title {
    display: none;
  }
  .product-select {
    min-width: 185px;
    display: flex;
    border: 1px solid var(--line);
    border-radius: 40px;
    padding: 8px;
  }
  .product-select::after {
    display: none;
  }
  .product-select strong {
    white-space: nowrap;
  }
  .product-select small {
    display: none;
  }
  .product-canvas {
    min-height: 360px;
  }
  .product-canvas img {
    inset: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    border-radius: 13px;
  }
  .product-canvas::after {
    inset: 18px;
    border-radius: 13px;
  }
  .product-canvas__code {
    right: 33px;
    bottom: 33px;
  }
  .product-canvas__ring {
    width: 300px;
    height: 300px;
  }
  .product-details {
    display: block;
  }
  .product-details__head {
    margin-bottom: 25px;
  }
  .product-details h3 {
    font-size: 23px;
  }
  .product-details > p {
    font-size: 13px;
  }
  .product-details__foot {
    align-items: stretch;
    flex-direction: column;
  }
  .product-details__foot .button {
    width: 100%;
  }
  .story-visual {
    min-height: 470px;
  }
  .story-visual__main {
    inset: 0 20px 0 0;
    border-radius: 18px 110px 18px 18px;
  }
  .story-visual__small {
    width: 165px;
    height: 190px;
    border-width: 7px;
  }
  .story-stamp {
    width: 105px;
    height: 105px;
  }
  .story-points {
    grid-template-columns: 1fr;
  }
  .projects__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .project-track {
    grid-auto-columns: 88vw;
  }
  .project-case {
    height: 390px;
  }
  .project-case__body h3 {
    font-size: 19px;
  }
  .resource-item {
    grid-template-columns: 47px 1fr 32px;
    padding: 11px;
  }
  .resource-item__type {
    width: 46px;
    height: 49px;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article__body {
    min-height: 0;
  }
  .article__body h3 {
    font-size: 18px;
  }
  .cta {
    padding-block: 65px;
  }
  .cta__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .cta__actions .button {
    width: 100%;
  }
  .cta__phone {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .hero__eyebrow {
    font-size: 11px;
  }
  .hero__lead {
    font-size: 15px;
  }
  .hero__proof p {
    font-size: 11px;
  }
  .hero__proof strong {
    font-size: 12px;
  }
  .signal-item {
    min-height: 88px;
    padding-inline: 20px;
    border-bottom-color: var(--line);
  }
  .signal-item span {
    font-size: 23px;
  }
  .signal-item strong {
    font-size: 14px;
  }
  .signal-item small {
    font-size: 11px;
  }
  .marquee__track {
    font-size: 12px;
  }
  .product-browser {
    padding: 14px 12px 10px;
  }
  .product-browser__top {
    margin-bottom: 10px;
  }
  .product-browser__title strong {
    font-size: 14px;
  }
  .product-browser__title small {
    font-size: 10px;
  }
  .product-browser__controls button {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
  .product-list {
    gap: 10px;
    padding: 2px 1px 12px;
    scrollbar-width: none;
  }
  .product-list::-webkit-scrollbar {
    display: none;
  }
  .product-select {
    flex: 0 0 min(78vw, 285px);
    min-width: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    border-radius: 14px !important;
    padding: 11px 12px;
  }
  .product-select small {
    display: block;
    font-size: 10px;
  }
  .product-browser__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .product-browser__hint {
    font-size: 11px;
  }
  .product-browser__all {
    font-size: 13px;
  }
  .product-details {
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .product-details > p {
    font-size: 14px;
  }
  .spec-list div {
    font-size: 12px;
  }
}


.cta__phones {
  display: grid;
  gap: 10px;
}

.cta__phones .cta__phone {
  display: grid;
  gap: 2px;
}