:root {
  --primary: #f2ecf0;
  --secondary: #212121;
  --tertiary: #c0c0c0;
  --text-one: #c6c6c6;
  --gradient-one: linear-gradient(
    #0a1523,
    #234266 40%,
    #4a73a1 65%,
    #75a1d4 100%
  );
  --gradient-two: linear-gradient(
    #0a1523,
    #23466f 40%,
    #3b5e86 65%,
    #1d395a 80%,
    #0a1523 100%
  );
  --gradient-three: linear-gradient(
    180deg,
    rgb(220, 210, 226) 0%,
    rgb(243, 232, 249) 100%
  );
  --accent-one: #ff7b00;
  --accent-kupu: #ef0e42;
  --accent-two: #dcd2de;
  --text-two: #d4d4d4;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
}
.navbar-left .logo {
  height: 35px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}
.navbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.site-name a {
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
}
.site-name a:hover {
  color: #cecece;
}
.navbar-right {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
}
.navbar-right a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
  transition: color 0.2s ease;
}
.navbar-right a:hover {
  color: #cecece;
}
/* Responsive */
@media (max-width: 768px) {
  .navbar-center {
    display: none;
  }

  .navbar {
    justify-content: space-between;
  }
}

/* NAV CONTAINER */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  z-index: 999;
  pointer-events: none;
  will-change: transform;
}
.nav > * {
  pointer-events: auto;
}
.nav-logo svg {
  width: 35px;
  height: auto;
  color: var(--tertiary);
  transition: all 0.2s ease-out;
}
.nav-logo svg:hover {
  color: var(--primary);
  transform: translateX(3px);
}
.nav-links {
  display: flex;
  gap: 10rem;
  align-items: center;
}
.nav-links a {
  color: var(--tertiary);
  text-decoration: none;
  font-size: 0.7rem;
  transition: all 0.2s ease-out;
}
.nav-links a:hover {
  color: var(--primary);
}
.opt-out {
  mix-blend-mode: normal;
  isolation: isolate;
}
.btn-full {
  position: relative;
  border: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  color: var(--tertiary);
  background: var(--secondary);
  padding: 7px 10px;
  font-size: 0.7rem;
  display: inline-block;
}
.btn-full i {
  display: inline-block;
  transform: scale(0.8) rotate(0turn);
  transition: transform 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.btn-full a {
  color: var(--tertiary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(1, -0.01, 0.45, 1);
}
.btn-full:hover a {
  color: var(--primary);
}
.btn-full:hover i {
  transform: scale(1) rotate(-2turn);
}
.btn-full:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-kupu);
  transition: all 0.3s cubic-bezier(1, -0.01, 0.45, 1);
  mix-blend-mode: normal;
  isolation: isolate;
}
.btn-full:hover:after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .nav {
    padding: 1rem 1rem;
  }
  .nav-logo svg {
    width: 30px;
    height: auto;
  }
  .nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .nav-links a {
    color: var(--tertiary);
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.2s ease-out;
  }
  .btn-full {
    padding: 7px 10px;
    font-size: 0.7rem;
  }
}

#header {
  top: 0px;
  height: 100vh;
  position: sticky;
  z-index: 1;
}
.header-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* important */
}
.bg {
  background: #000;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: var(--primary);
  padding: 8rem 5rem;
}
.header-content h1 {
  font-family: "Poppins";
  color: var(--primary);
  font-size: 4rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .header-content {
    height: 100%;
  }
  .header-content h1 {
    font-size: 2rem;
  }
  .header-content {
    padding: 5rem 1rem;
  }
}

/* MAIN WORK SECTION */
#main {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 3;
  background: var(--gradient-two);
  box-shadow: 0px -10px 50px rgba(0, 0, 0, 0.55);
  margin-bottom: 0;
}
.main-wrapper {
  position: relative;
  padding: 1rem 1rem 1rem;
  color: var(--text-one);
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
.info {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
}
.info h2 {
  font-size: 3rem;
  margin: 0 5rem 0;
  text-align: center;
}
.title {
  padding: 0;
}
.title svg {
  width: 100%;
}
.main-wrapper h4 {
  font-size: 1.5rem;
}
.overview {
  color: var(--text-one);
  font-size: 2.3rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -4px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.overview h2 i,
.kupu-overview h2 b {
  color: var(--text-two);
  font-weight: 600;
}
.details {
  align-items: center;
  margin: 0 10em;
}
.details p {
  font-size: 0.8rem;
}
.team {
  align-items: center;
  margin: 0 10em;
  padding: 1rem 0 0;
}
.team p {
  font-size: 0.8rem;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
}
.row p {
  border-left: 1px solid var(--tertiary);
  padding-left: 1rem;
}
.grid-one,
.grid-two {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 0;
  display: grid;
}
.grid-one-item {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.grid-one-item:nth-child(1) {
  grid-column: 1 / 13;
  aspect-ratio: 4 / 2;
  background: linear-gradient(-45deg, #0a1523, #4875a9 50%, #0e253c 110%);
  background-position: center;
  background-size: cover;
}
.grid-one-item:nth-child(2) {
  position: relative;
  grid-column: 1 / 6;
  aspect-ratio: 1/1.237;
  width: 100;
  background: linear-gradient(45deg, #0a1523 -20%, #234266 60%, #4a73a1 100%);
  background-position: center;
  background-size: cover;
}
.grid-one-item:nth-child(2) img {
  scale: 1.2;
  rotate: 10deg;
}
.grid-one-item:nth-child(3) {
  grid-column: 6 / 13;
  aspect-ratio: 10.5 / 9.2;
  background: linear-gradient(145deg, #0f2d4f 30%, #428fe6 100%);
  background-position: center;
  background-size: cover;
}

@media (max-width: 768px) {
  .main-wrapper {
    gap: 3rem;
  }
  .info {
    width: 100%;
    padding: 1rem;
    display: flex;
    gap: 3rem;
  }
  .info h2 {
    margin: 0;
  }
  .overview {
    color: var(--text-one);
    letter-spacing: -1px;
    word-spacing: normal;
    line-height: 1;
    margin: 0;
  }
  .overview h2 {
    font-size: 1.3rem;
    text-align: left;
  }
  .details {
    align-items: center;
    margin: 0em;
  }
  .details p {
    font-size: 0.5rem;
  }
  .team {
    align-items: center;
    margin: 0em;
    padding: 1rem 0 0;
  }
  .team p {
    font-size: 0.5rem;
  }
  .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 0;
  }
  .row p {
    border-left: 1px solid var(--tertiary);
    padding-left: 1rem;
  }
  .grid-one {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .grid-one-item:nth-child(1),
  .grid-one-item:nth-child(2),
  .grid-one-item:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }
  .grid-one-item:nth-child(2) img {
    scale: 1.2;
  }
}

/* BACKGROUND */
.background {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  z-index: 1;
}
.bg-header h2 {
  font-size: 3rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -4px;
  line-height: 1;
  padding: 0 0 1rem;
}
h2 i {
  color: var(--primary);
}
.bg-header h3 {
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -4px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.bg-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  margin: 5rem 0 5rem;
}
.bg-item:nth-child(1) {
  aspect-ratio: 3/4;
  background: url(/images/kupu-logo-current.png);
  background-position: center;
  background-size: cover;
}
.bg-item:nth-child(2) {
  aspect-ratio: 3/4;
  background: url(/images/kupu-lady.png);
  background-position: center;
  background-size: cover;
}
.bg-item:nth-child(3) {
  aspect-ratio: 3/4;
  background: url(/images/kupu-example.png);
  background-position: center;
  background-size: cover;
}
.background h3 {
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -4px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.focus {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 5rem 0 0;
  align-items: center;
  gap: 1rem;
}
.focus h4 {
  font-size: 2rem;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--primary);
}
.background-element {
  position: absolute;
  left: 0;
  bottom: -650px;
  scale: 0.4;
  margin-left: -750px;
  z-index: 0;
  filter: blur(5px);
}

@media (max-width: 768px) {
  .bg-header h2 {
    font-size: 2rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: normal;
  }
  h2 i {
    color: var(--primary);
  }
  .bg-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin: 3rem 0 3rem;
  }
  .bg-item:nth-child(1) {
    aspect-ratio: 3/3;
  }
  .bg-item:nth-child(2) {
    aspect-ratio: 3/3;
  }
  .bg-item:nth-child(3) {
    aspect-ratio: 3/3;
  }
  .background h3 {
    font-size: 1.5rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: normal;
    line-height: 1;
    margin: 0;
  }
  .focus {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 3rem 0 0;
    align-items: center;
    gap: 1rem;
  }
  .focus h4 {
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
  }
  .background-element {
    display: none;
  }
}

/* PROCESS */

.process {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
}
.process-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.process-header {
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -4px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.process-cards {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: space-evenly;
}
.p-card {
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08);
  max-width: 350px;
  color: var(--primary);
  aspect-ratio: 4/2;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
}
b {
  color: var(--primary);
}
.p-card h4 {
  /* font-family: "Poppins"; */
  letter-spacing: -1px;
  font-size: 2.5rem;
  font-weight: 500;
}
.p-thumb {
  width: 100%;
  background: linear-gradient(#0a1523, #234266 60%, #4a73a1 100%);
  aspect-ratio: 2/2;
}
.p-card:nth-child(1) .p-thumb {
  background: url(/images/tarnished-fig.png);
  background-position: center;
  background-size: cover;
}
.p-card:nth-child(2) .p-thumb {
  background: url(/images/kupu-testing-alt.png);
  background-position: center;
  background-size: cover;
}
.p-card:nth-child(3) .p-thumb {
  background: url(/images/kupu-refine.png);
  background-position: center;
  background-size: cover;
}
.grid-two-item {
  width: 100%;
  position: relative;
}
.grid-two-item:nth-child(1) {
  grid-column: 1 / 13;
  aspect-ratio: 4 / 2;
  background: linear-gradient(#0a1523, #234266 60%, #4a73a1 100%);
}
.grid-two-item:nth-child(2) {
  grid-column: 1 / 6;
  width: 100%;
  background: linear-gradient(#0a1523, #234266 60%, #4a73a1 100%);
}
.grid-two-item:nth-child(3) {
  grid-column: 6 / 13;
  aspect-ratio: 10.5 / 9.2;
  background: linear-gradient(#0a1523, #234266 60%, #4a73a1 100%);
}

@media (max-width: 768px) {
  .process-wrapper {
    gap: 3rem;
  }
  .process-header {
    font-size: 1.3rem;
    text-align: left;
    word-spacing: normal;
    margin: 0;
  }
  .process-cards {
    width: 100%;
    flex-direction: column;
  }
  .p-card {
    flex-direction: column;
    aspect-ratio: 4/4;
  }
  .p-card h4 {
    font-size: 2rem;
    font-weight: 500;
  }
  .p-thumb {
    aspect-ratio: 2/1;
  }
  .grid-two-item:nth-child(1) {
    grid-column: 1 / 13;
    aspect-ratio: 4 / 2;
    background: linear-gradient(#0a1523, #234266 60%, #4a73a1 100%);
  }
  .grid-two-item:nth-child(2) {
    grid-column: 1 / 6;
    width: 100%;
    background: linear-gradient(#0a1523, #234266 60%, #4a73a1 100%);
  }
  .grid-two-item:nth-child(3) {
    grid-column: 6 / 13;
    aspect-ratio: 10.5 / 9.2;
    background: linear-gradient(#0a1523, #234266 60%, #4a73a1 100%);
  }
}

.explainer {
  width: 85%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 5rem;
}
.explainer video {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .explainer {
    width: 100%;
    padding: 0.5rem;
  }
}

.function {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  z-index: 1;
}
.function p {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.function-header h2 {
  font-size: 3rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -4px;
  line-height: 1;
  padding: 0 0 3rem;
}
h2 i {
  color: var(--primary);
}
.function-header h3 {
  font-size: 2rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.function-grid-one {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  margin: 5rem 0 5rem;
}
.function-grid-two {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  margin: 5rem 0 5rem;
}
.item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  background-position: center;
  background-size: cover;
}
.item img {
  display: block;
  width: 100%;
}
.function p {
  font-size: 2rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.item video {
  display: block;
  width: 100%;
}

.branding {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  z-index: 1;
}
.branding p {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
@media screen and (min-width: 1500px) {
  .branding p,
  .function p {
    margin: 0 15rem 0 15rem;
  }
}
@media (max-width: 768px) {
  .function p {
    font-size: 2rem;
    text-align: center;
    letter-spacing: -1px;
    word-spacing: nomral;
    margin: 0rem;
  }
  .function-header h2 {
    font-size: 1.8rem;
    text-align: center;
    word-spacing: normal;
    padding: 0 0 3rem;
    text-align: left;
  }
  .function-header h3 {
    font-size: 1.5rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: normal;
    line-height: 1;
    font-weight: 500;
    margin: 0;
  }
  .function-grid-one {
    grid-template-columns: 1fr;
    margin: 3rem 0 3rem;
  }
  .function-grid-two {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    margin: 5rem 0 5rem;
  }
  .item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background-position: center;
    background-size: cover;
  }
  .item img {
    display: block;
    width: 100%;
  }
  .function p {
    font-size: 1.3rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: normal;
    line-height: 1;
    margin: 0;
  }
  .item video {
    display: block;
    width: 100%;
  }
  .branding {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    z-index: 1;
  }
  .branding p {
    font-weight: 500;
    font-size: 1.3rem;
    text-align: left;
    word-spacing: normal;
    margin: 0;
  }
}

.branding-header h2 {
  font-size: 3rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -4px;
  line-height: 1;
  padding: 0 0 3rem;
}
h2 i {
  color: var(--primary);
}
.branding-header h3 {
  font-size: 2rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.branding-grid-one {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  margin: 5rem 0 5rem;
}
.branding-grid-one .item {
  background: none;
  border: none;
  background-position: center;
  background-size: cover;
}
.branding-grid-one .item img {
  scale: 0.9;
}
.branding-grid-two {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  margin: 5rem 0 5rem;
}
.branding-grid-two .item {
  display: block;
  background: none;
  width: 100%;
  border: none;
  background-position: center;
  background-size: cover;
}
.haerenga-map {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}
.haerenga-map img {
  display: block;
  max-width: 400px;
}
.art-grid-one {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  margin: 5rem 0 5rem;
}
.logo-work {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 6em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  margin: 5rem 0 5rem;
}
.logo-work .item {
  background: none;
  border: none;
}
.logo-grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  margin: 5rem 0 5rem;
}
.art {
  display: block;
  background-position: center;
  background-size: cover;
}
.art img {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .branding-header h2 {
    font-size: 1.8rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: normal;
    line-height: 1;
    padding: 0 0 3rem;
  }
  .branding-header h3 {
    font-size: 1.5rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: normal;
    line-height: 1;
    margin: 0;
    font-weight: 500;
  }
  .branding-grid-one {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    margin: 5rem 0 5rem;
  }
  .branding-grid-one .item {
    background: none;
    border: none;
    background-position: center;
    background-size: cover;
  }
  .branding-grid-one .item img {
    scale: 0.9;
  }
  .branding-grid-two {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    margin: 5rem 0 5rem;
  }
  .branding-grid-two .item {
    display: block;
    background: none;
    width: 100%;
    border: none;
    background-position: center;
    background-size: cover;
  }
  .haerenga-map {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
  }
  .haerenga-map img {
    display: block;
    max-width: 400px;
  }
  .art-grid-one {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    margin: 5rem 0 5rem;
  }
}

.incentive {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  z-index: 1;
}
.incentive-header h2 {
  font-size: 3rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -4px;
  line-height: 1;
  padding: 0 0 3rem;
}
.incentive-header h3 {
  font-size: 2rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}
.app-grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  padding: 3rem 0;
}
.app-grid .item img {
  scale: 1.05;
  align-self: center;
}
.incentive p {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: 1;
  margin: 0 5rem 0 5rem;
}

@media screen and (max-width: 768px) {
  .incentive {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    z-index: 1;
  }
  .incentive-header h2 {
    font-size: 1.8rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: normal;
    line-height: 1;
    padding: 0 0 3rem;
  }
  .incentive-header h3 {
    font-size: 1.5rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: nomral;
    line-height: 1;
    margin: 0;
    font-weight: 500;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .app-grid .item img {
    scale: 1.05;
    align-self: center;
  }
  .incentive p {
    font-weight: 500;
    font-size: 1.3rem;
    text-align: left;
    letter-spacing: -1px;
    word-spacing: normal;
    line-height: 1;
    margin: 0rem;
  }
}
/* FOOTER */
#home-footer {
  background: var(--gradient-one);
  position: fixed;
  bottom: 0;
  left: 0;
  height: 75vh;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
body.at-footer #home-footer {
  pointer-events: auto;
}
.footer-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 12rem 1rem 1rem;
  justify-content: space-between;
}
.ft-header {
  padding: 0;
  container-type: inline-size;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.ft-header h2 {
  font-family: "Poppins";
  line-height: 1;
  font-size: clamp(3rem, 10cqw, 12rem);
  color: var(--text-one);
  padding: 0 0 2rem;
}
.ft-header h2 i {
  color: var(--primary);
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ft-links a {
  text-decoration: none;
  color: var(--tertiary);
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex; /* or inline-block */
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
}
.ft-links i {
  font-size: 0.5rem;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.ft-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}
.ft-links a:hover i {
  transform: rotate(2turn) scale(1.2);
}
.bottom-btns {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.ft-btn,
.ft-btn-return {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  border: 0.5px;
  color: var(--secondary);
  text-decoration: none;
  cursor: pointer;
}
.ft-btn i,
.ft-btn-return i {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  transform: rotate(0turn);
  color: var(--secondary);
  transition: color 0.3s cubic-bezier(1, -0.01, 0.45, 1),
    transform 0.3s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.ft-btn::after,
.ft-btn-return::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-kupu);
  z-index: 1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.ft-btn:hover::after,
.ft-btn-return:hover::after {
  transform: scaleY(1);
}
.ft-btn:hover i {
  color: var(--primary);
}
.ft-btn-return:hover i {
  color: var(--primary);
  transform: scale(1.2);
}

/* COPYRIGHT */
.copyright {
  color: var(--muted-two);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
  .bottom-btns {
    justify-content: flex-start;
    padding: 0 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper {
    padding: 15rem 1rem 1rem;
  }
  .bottom-btns {
    justify-content: flex-start;
    padding: 0 0 3rem;
  }
  .ft-header {
    justify-content: space-between;
  }
  .ft-header h2 {
    padding: 0 0 1rem;
  }
}
