@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");
:root {
  --kw-primary: #ff4d00;
  --kw-secondary: #e00019;
  --kw-accent: #ffb000;
  --ink: #101114;
  --ink-2: #181a20;
  --paper: #f5f2eb;
  --white: #fff;
  --muted: #a9acb6;
  --green: #00a651;
  --radius: 24px;
  --container: min(1280px, calc(100vw - 48px));
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
}

/* About page */
.kw-about-story {
  background: #f7f4ef;
}
.kw-about-editor-content {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #15161a1a;
}
.kw-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(60px, 8vw, 110px);
  border-block: 1px solid #15161a1f;
}
.kw-about-stats article {
  padding: 34px clamp(20px, 3vw, 42px);
  border-right: 1px solid #15161a1f;
}
.kw-about-stats article:last-child {
  border-right: 0;
}
.kw-about-stats span,
.kw-value-card__top span {
  color: var(--kw-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.kw-about-stats h3 {
  margin: 30px 0 12px;
}
.kw-about-stats p {
  margin: 0;
  color: #676970;
  font-size: 0.9rem;
}
.kw-values--about {
  position: relative;
  overflow: hidden;
  background: #0e0f12;
  color: #fff;
}
.kw-values--about::before {
  content: "VALUES";
  position: absolute;
  right: -0.04em;
  top: 0;
  color: #ffffff05;
  font: 700 clamp(7rem, 20vw, 20rem)/0.8 var(--display);
  letter-spacing: -0.08em;
  pointer-events: none;
}
.kw-values__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(48px, 7vw, 90px);
}
.kw-values__intro h2 {
  max-width: 800px;
  margin-bottom: 0;
}
.kw-values__intro > p {
  color: #a9abb2;
  margin-bottom: 8px;
}
.kw-values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.kw-value-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid #ffffff19;
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff0b, #ffffff02);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.kw-value-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: var(--kw-primary);
  filter: blur(8px);
  opacity: 0.08;
  transition: 0.35s ease;
}
.kw-value-card:hover {
  transform: translateY(-7px);
  border-color: #ff5a1f80;
  background: linear-gradient(145deg, #ffffff10, #ff4c0a08);
}
.kw-value-card:hover::after {
  transform: scale(1.45);
  opacity: 0.14;
}
.kw-value-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kw-value-card__top i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff2b;
  border-radius: 50%;
  color: var(--kw-accent);
  font-style: normal;
}
.kw-value-card h3 {
  max-width: 430px;
  margin: clamp(65px, 8vw, 110px) 0 18px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}
.kw-value-card p {
  max-width: 500px;
  margin: 0;
  color: #a9abb2;
}
.kw-about-method {
  background: var(--kw-primary);
  color: #fff;
}
.kw-about-method .kw-kicker,
.kw-about-method h2 em {
  color: #15161a;
}
.kw-about-method__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
}
.kw-about-method__steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #ffffff3d;
}
.kw-about-method__steps article:first-child {
  padding-top: 0;
}
.kw-about-method__steps span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.kw-about-method__steps h3 {
  margin-bottom: 10px;
}
.kw-about-method__steps p {
  max-width: 550px;
  margin: 0;
  color: #fff;
  opacity: 0.78;
}
@media (max-width: 900px) {
  .kw-values__intro,
  .kw-about-method__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .kw-about-stats,
  .kw-values-grid {
    grid-template-columns: 1fr;
  }
  .kw-about-stats article {
    border-right: 0;
    border-bottom: 1px solid #15161a1f;
    padding-inline: 0;
  }
  .kw-about-stats article:last-child {
    border-bottom: 0;
  }
  .kw-value-card {
    min-height: 280px;
  }
  .kw-value-card h3 {
    margin-top: 60px;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.screen-reader-text,
.kw-hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.kw-skip {
  position: fixed;
  left: 1rem;
  top: -100px;
  background: #fff;
  padding: 0.8rem 1rem;
  z-index: 9999;
}
.kw-skip:focus {
  top: 1rem;
}
.kw-container {
  width: var(--container);
  margin-inline: auto;
}
.kw-narrow {
  width: min(800px, calc(100vw - 48px));
  margin-inline: auto;
}
.kw-section {
  padding: clamp(88px, 10vw, 160px) 0;
}
.kw-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.72rem;
  margin: 0 0 22px;
  color: var(--kw-primary);
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-top: 0;
}
h1 {
  font-size: clamp(3.4rem, 7.8vw, 8.3rem);
}
h2 {
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
}
h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}
h1 em,
h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--kw-primary);
}
p {
  margin-top: 0;
}
.kw-section-head {
  max-width: 900px;
  margin-bottom: clamp(50px, 6vw, 90px);
}
.kw-section-head h2 {
  margin-bottom: 24px;
}
.kw-section-head > p:last-child {
  max-width: 650px;
  color: #5b5d65;
  font-size: 1.08rem;
}
.kw-section-head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}
.kw-button {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(120deg, var(--kw-secondary), var(--kw-primary));
  color: #fff;
  padding: 15px 18px 15px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 0;
  box-shadow: 0 12px 32px #ed3b002c;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.kw-button i {
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-style: normal;
}
.kw-button:hover,
.kw-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px #ed3b0042;
}
.kw-button--ghost {
  background: transparent;
  border: 1px solid #ffffff4b;
  box-shadow: none;
}
.kw-button--light {
  background: #fff;
  color: #111;
  box-shadow: none;
}
.kw-text-link {
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}
.kw-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.kw-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: 0.3s;
}
.kw-header.is-scrolled {
  background: #101114e8;
  backdrop-filter: blur(18px);
  box-shadow: 0 1px #ffffff14;
  padding: 8px 0;
}
.kw-header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
}
.kw-brand img {
  width: 82px;
  height: 70px;
  object-fit: contain;
}
.kw-nav {
  margin-left: auto;
}
.kw-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.kw-nav a {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.kw-nav li a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--kw-accent);
  transition: 0.25s;
}
.kw-nav li a:hover:after {
  width: 100%;
}
.kw-nav li.current-menu-item > a,
.kw-nav li.current_page_item > a,
.kw-nav li.current-menu-parent > a,
.kw-nav li.current_page_parent > a,
.kw-nav li.current-menu-ancestor > a {
  color: var(--kw-accent);
}
.kw-nav li.current-menu-item > a::after,
.kw-nav li.current_page_item > a::after,
.kw-nav li.current-menu-parent > a::after,
.kw-nav li.current_page_parent > a::after,
.kw-nav li.current-menu-ancestor > a::after {
  width: 100%;
}
.kw-header__cta {
  margin-left: 12px;
}
.kw-menu-toggle,
.kw-nav__mobile-cta {
  display: none;
}
.kw-hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 75% 40%, #602006 0, transparent 31%),
    radial-gradient(circle at 45% -20%, #402000 0, transparent 35%), var(--ink);
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 70px;
}
.kw-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.kw-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  position: relative;
  z-index: 2;
}
.kw-hero h1 {
  max-width: 850px;
  margin-bottom: 30px;
}
.kw-hero__text {
  max-width: 630px;
  color: #c9cad0;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  margin-bottom: 35px;
}
.kw-hero__visual {
  position: relative;
  align-self: end;
  transform-style: preserve-3d;
}
.kw-hero__visual img {
  width: min(46vw, 590px);
  filter: drop-shadow(0 25px 45px #0009);
  position: relative;
  z-index: 2;
}
.kw-hero__halo {
  position: absolute;
  inset: 10% -5% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, #ff741d70, transparent 67%);
  filter: blur(20px);
}
.kw-float {
  position: absolute;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid #ffffff29;
  background: #17181dcc;
  color: #fff;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 700;
  animation: float 5s ease-in-out infinite;
}
.kw-float--one {
  left: 3%;
  top: 20%;
}
.kw-float--two {
  right: -5%;
  top: 40%;
  animation-delay: -2s;
}
.kw-float--three {
  left: 12%;
  bottom: 15%;
  animation-delay: -3.5s;
}
.kw-scroll {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #aaa;
  z-index: 3;
}
.kw-scroll i {
  display: block;
  width: 1px;
  height: 27px;
  background: linear-gradient(#fff, transparent);
  margin: 8px auto;
}
.kw-orbit {
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid #ffffff0e;
  border-radius: 50%;
  right: -180px;
  top: -120px;
}
.kw-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--kw-accent);
  box-shadow: 0 0 20px var(--kw-primary);
}
.kw-orbit i:nth-child(1) {
  top: 25%;
  left: 5%;
}
.kw-orbit i:nth-child(2) {
  bottom: 10%;
  left: 25%;
}
.kw-orbit i:nth-child(3) {
  top: 50%;
  right: 0;
}
.kw-trust {
  background: var(--kw-primary);
  color: #fff;
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1deg);
  width: 102%;
  margin-left: -1%;
  position: relative;
  z-index: 3;
}
.kw-marquee {
  white-space: nowrap;
}
.kw-marquee > div {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}
.kw-marquee i {
  color: var(--kw-accent);
  padding: 0 28px;
}
.kw-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #c7c4bc;
}
.kw-problem {
  position: relative;
  padding: 45px 70px 50px 0;
  border-bottom: 1px solid #c7c4bc;
}
.kw-problem:nth-child(odd) {
  border-right: 1px solid #c7c4bc;
}
.kw-problem:nth-child(even) {
  padding-left: 60px;
}
.kw-problem > span {
  font-size: 0.75rem;
  color: var(--kw-primary);
  font-weight: 700;
}
.kw-problem h3 {
  margin: 35px 0 15px;
}
.kw-problem p {
  max-width: 480px;
  color: #65676d;
}
.kw-problem > i {
  position: absolute;
  right: 25px;
  top: 45px;
  font-size: 1.5rem;
  font-style: normal;
  transition: 0.3s;
}
.kw-problem:hover > i {
  transform: rotate(45deg);
  color: var(--kw-primary);
}
.kw-services {
  background: var(--ink);
  color: #fff;
}
.kw-service-row {
  display: grid;
  grid-template-columns: 60px 0.9fr 1.2fr 30px;
  align-items: center;
  gap: 25px;
  padding: 30px 8px;
  border-top: 1px solid #ffffff22;
  transition: 0.3s;
}
.kw-service-row:last-child {
  border-bottom: 1px solid #ffffff22;
}
.kw-service-row > span {
  color: var(--kw-primary);
  font-size: 0.75rem;
}
.kw-service-row h3 {
  margin: 0;
}
.kw-service-row p {
  color: #999da7;
  margin: 0;
  font-size: 0.9rem;
}
.kw-service-row i {
  font-style: normal;
  font-size: 1.6rem;
}
.kw-service-row:hover {
  padding-left: 20px;
  background: linear-gradient(90deg, #ff4d0014, transparent);
}
.kw-why {
  background: linear-gradient(135deg, #e12608, var(--kw-primary));
  color: #fff;
}
.kw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}
.kw-split > div > p:not(.kw-kicker) {
  max-width: 540px;
  color: #ffe6d9;
  margin-bottom: 32px;
}
.kw-principles > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid #ffffff3b;
}
.kw-principles span {
  font-size: 0.7rem;
}
.kw-principles h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
}
.kw-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 28px;
}
.kw-project:nth-child(even) {
  margin-top: 110px;
}
.kw-project__media {
  height: clamp(350px, 42vw, 620px);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.kw-project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.kw-project:hover img {
  transform: scale(1.04);
}
.kw-project__media > span {
  font: 700 clamp(8rem, 18vw, 17rem)/1 var(--display);
  color: #ffffffb8;
  z-index: 2;
}
.kw-project__shape {
  position: absolute;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, #fff5, transparent);
  border-radius: 45% 55% 60% 40%;
  transform: rotate(25deg);
  filter: blur(2px);
}
.kw-project--orange .kw-project__media {
  background: #f2531d;
}
.kw-project--green .kw-project__media {
  background: #127b4e;
}
.kw-project--violet .kw-project__media {
  background: #6a4bc2;
}
.kw-project--gold .kw-project__media {
  background: #c28c22;
}
.kw-project__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}
.kw-project__meta small {
  color: #73757c;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.kw-project__meta h3,
.kw-project__meta h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.5rem);
  margin: 5px 0;
}
.kw-project__meta > strong {
  max-width: 160px;
  text-align: right;
  font-size: 0.78rem;
  color: var(--kw-primary);
}
.kw-process {
  background: #e9e5dc;
}
.kw-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #bdb9b0;
}
.kw-timeline article {
  padding: 35px 22px 0 0;
  position: relative;
}
.kw-timeline article > span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--kw-primary);
  border-radius: 50%;
  top: -5px;
  left: 0;
}
.kw-timeline h3 {
  font-size: 1.25rem;
  margin: 16px 0;
}
.kw-timeline p {
  font-size: 0.84rem;
  color: #65676d;
}
.kw-results {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
}
.kw-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.kw-stat-grid > div {
  padding: 20px 30px;
  border-left: 1px solid #ffffff22;
}
.kw-stat-grid strong {
  font: 600 clamp(2.7rem, 5vw, 5.4rem)/1 var(--display);
  display: block;
  color: var(--kw-accent);
  letter-spacing: -0.06em;
}
.kw-stat-grid span {
  display: block;
  color: #a8aab2;
  margin-top: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.kw-ecosystem {
  background: #111216;
  color: #fff;
}
.kw-ecosystem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8vw;
}
.kw-ecosystem__visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.kw-ecosystem__visual img {
  max-height: 530px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 40px #000);
}
.kw-rings {
  position: absolute;
  inset: 7%;
  border: 1px solid #ffffff1d;
  border-radius: 50%;
  animation: spin 25s linear infinite;
}
.kw-rings:before,
.kw-rings:after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid #ffffff16;
  border-radius: 50%;
}
.kw-rings:after {
  inset: 28%;
}
.kw-rings span {
  position: absolute;
  background: var(--kw-primary);
  font-size: 0.65rem;
  padding: 7px 11px;
  border-radius: 30px;
}
.kw-rings span:nth-child(1) {
  top: 5%;
  left: 20%;
}
.kw-rings span:nth-child(2) {
  right: 0;
  top: 45%;
}
.kw-rings span:nth-child(3) {
  bottom: 4%;
  left: 36%;
}
.kw-rings span:nth-child(4) {
  left: -2%;
  top: 50%;
}
.kw-ecosystem__inner h2 {
  margin-bottom: 30px;
}
.kw-ecosystem__inner > div:last-child > p:not(.kw-kicker) {
  color: #aaa;
  max-width: 530px;
  margin-bottom: 30px;
}
.kw-testimonials {
  background: var(--kw-primary);
  color: #fff;
}
.kw-testimonial-stage {
  position: relative;
  min-height: 390px;
}
.kw-quote {
  display: none;
  margin: 0;
  max-width: 1050px;
}
.kw-quote.is-active {
  display: block;
  animation: fade 0.5s;
}
.kw-stars {
  color: var(--kw-accent);
  letter-spacing: 0.2em;
}
.kw-quote > p {
  font: 500 clamp(2rem, 4.3vw, 4.6rem)/1.12 var(--display);
  letter-spacing: -0.04em;
  margin: 35px 0;
}
.kw-quote footer strong,
.kw-quote footer span {
  display: block;
}
.kw-quote footer span {
  font-size: 0.8rem;
  color: #ffd8c8;
}
.kw-slider-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}
.kw-slider-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff62;
}
.kw-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.kw-post-card {
  background: #fff;
}
.kw-post-card img {
  aspect-ratio: 1.35;
  object-fit: cover;
}
.kw-post-card > div {
  padding: 30px;
}
.kw-post-card span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #777;
}
.kw-post-card h3,
.kw-post-card h2 {
  font-size: 1.45rem;
  line-height: 1.15;
  margin: 14px 0;
}
.kw-post-card p {
  font-size: 0.86rem;
  color: #686a70;
}
.kw-arrow-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--kw-primary);
}
.kw-faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10vw;
}
.kw-faq-layout > div:first-child p {
  color: #666;
}
.kw-faq-layout > div:first-child > a {
  color: var(--kw-primary);
  font-weight: 700;
}
.kw-accordion article {
  border-top: 1px solid #c9c6bd;
}
.kw-accordion article:last-child {
  border-bottom: 1px solid #c9c6bd;
}
.kw-accordion h3 {
  margin: 0;
}
.kw-accordion button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 0;
  background: none;
  border: 0;
  text-align: left;
  color: var(--ink);
  font-weight: 600;
}
.kw-accordion button i {
  font-size: 1.5rem;
  font-style: normal;
}
.kw-accordion article > div {
  padding: 0 50px 25px 0;
  color: #666;
}
.kw-final-cta {
  padding: clamp(100px, 13vw, 190px) 0;
  background:
    radial-gradient(circle at 80% 50%, #632100, transparent 32%), var(--ink);
  color: #fff;
  text-align: center;
}
.kw-final-cta h2 {
  max-width: 1100px;
  margin: 0 auto 45px;
}
.kw-final-cta .kw-actions {
  justify-content: center;
}
.kw-whatsapp {
  padding: 16px 20px;
  color: #fff;
  font-weight: 700;
}
.kw-footer {
  background: #090a0c;
  color: #fff;
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
}
.kw-footer__lead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid #ffffff25;
  padding-bottom: 70px;
  gap: 30px;
}
.kw-footer__lead h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 800px;
  margin: 0;
}
.kw-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 0.8fr;
  gap: 60px;
  padding: 70px 0;
  align-items: start;
}
.kw-footer__logo {
  width: 120px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}
.kw-footer__grid p {
  color: #888b94;
  max-width: 350px;
}
.kw-footer__grid h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--kw-accent);
}
.kw-footer__grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kw-footer__grid a {
  display: block;
  color: #b5b7bd;
  margin: 8px 0;
}
.kw-footer__mascot {
  margin-top: -30px;
}
.kw-footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff18;
  padding-top: 25px;
  color: #696c74;
  font-size: 0.72rem;
}
.kw-footer__bottom div {
  display: flex;
  gap: 20px;
}
.kw-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #ff4d0022;
  filter: blur(80px);
  border-radius: 50%;
  right: -200px;
  bottom: -200px;
}
.kw-cursor {
  position: fixed;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--kw-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s;
}
.kw-page-hero,
.kw-detail-hero,
.kw-case-hero,
.kw-article-hero {
  background:
    radial-gradient(circle at 80% 40%, #4b1906, transparent 30%), var(--ink);
  color: #fff;
  padding: 180px 0 100px;
}
.kw-page-hero h1 {
  max-width: 1050px;
  margin-bottom: 30px;
}
.kw-page-hero > div > p:last-child {
  font-size: 1.15rem;
  color: #aaa;
  max-width: 700px;
}
.kw-breadcrumbs {
  display: flex;
  gap: 10px;
  color: #858790;
  font-size: 0.72rem;
  margin-bottom: 55px;
}
.kw-breadcrumbs a {
  color: #ddd;
}
.kw-content {
  padding: 90px 0 130px;
}
.kw-content > * {
  max-width: 760px;
}
.kw-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 65px;
}
.kw-content p {
  font-size: 1.08rem;
  color: #4f5158;
}
.kw-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kw-service-card {
  min-height: 390px;
  padding: 35px;
  background: #fff;
  border: 1px solid #dedbd3;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.kw-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--kw-primary);
  box-shadow: 0 25px 60px #26201912;
}
.kw-service-card > span {
  color: var(--kw-primary);
  font-size: 0.7rem;
}
.kw-service-card h2 {
  font-size: 2rem;
  margin: 50px 0 18px;
}
.kw-service-card p {
  color: #666;
  font-size: 0.9rem;
}
.kw-service-card > strong {
  margin-top: auto;
  color: var(--kw-primary);
  font-size: 0.8rem;
}
.kw-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.kw-tags i {
  font-style: normal;
  font-size: 0.65rem;
  background: #f0ede6;
  padding: 5px 9px;
  border-radius: 20px;
}
.kw-detail-hero h1 {
  margin-bottom: 20px;
}
.kw-detail-hero .kw-split > div > p:not(.kw-kicker) {
  font-size: 1.4rem;
  color: #aaa;
}
.kw-detail-visual {
  min-height: 480px;
  background: linear-gradient(135deg, var(--kw-primary), var(--kw-secondary));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.kw-detail-visual > span {
  font: 700 20rem/1 var(--display);
  color: #ffffff24;
}
.kw-detail-visual img {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 280px;
}
.kw-copy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12vw;
}
.kw-copy-grid aside > span {
  color: var(--kw-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.kw-copy-grid aside h2 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  margin-top: 25px;
}
.kw-prose p {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #555860;
}
.kw-list-section {
  background: #fff;
}
.kw-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ddd;
}
.kw-feature-grid article {
  background: #fff;
  padding: 45px;
  min-height: 220px;
}
.kw-feature-grid article span {
  color: var(--kw-primary);
  font-size: 0.7rem;
}
.kw-feature-grid article h3,
.kw-feature-grid article h2 {
  margin-top: 45px;
  font-size: 1.45rem;
  line-height: 1.1;
}
.kw-feature-grid article p {
  color: #666;
}
.kw-case-hero h1 {
  max-width: 1000px;
}
.kw-case-hero > div > p:last-child {
  font-size: 1.25rem;
  max-width: 750px;
  color: #aaa;
}
.kw-case-cover {
  height: min(70vw, 820px);
  margin-top: -40px;
  background: linear-gradient(135deg, var(--kw-primary), #6b1700);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.kw-case-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kw-case-cover > span {
  font: 700 25rem/1 var(--display);
  color: #ffffffaf;
  z-index: 2;
}
.kw-case-dark {
  background: #15161a;
  color: #fff;
}
.kw-case-dark .kw-prose p {
  color: #b4b6bd;
}
.kw-case-quote blockquote {
  font: 500 clamp(2rem, 4vw, 4rem)/1.2 var(--display);
  margin: 0;
}
.kw-article-hero h1 {
  font-size: clamp(3rem, 6vw, 6.5rem);
}
.kw-article-hero > div > p {
  font-size: 1.15rem;
  color: #aaa;
}
.kw-article-meta {
  font-size: 0.75rem;
  color: var(--kw-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.kw-featured {
  margin-top: -50px;
}
.kw-featured img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}
.kw-share {
  display: flex;
  gap: 20px;
  border-top: 1px solid #ccc;
  padding-top: 25px;
  margin-top: 60px;
}
.kw-contact-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 9vw;
}
.kw-contact-link {
  font: 600 clamp(1.3rem, 2.5vw, 2.4rem)/1.4 var(--display);
  display: block;
}
.kw-contact-grid img {
  margin-top: 40px;
  max-height: 390px;
  object-fit: contain;
}
.kw-contact-grid ol {
  padding-left: 20px;
}
.kw-contact-grid li {
  padding: 12px;
  color: #5b5d65;
}
.kw-form {
  background: #fff;
  padding: clamp(28px, 5vw, 60px);
  box-shadow: 0 30px 80px #241b1012;
}
.kw-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
  margin-bottom: 30px;
}
.kw-form label {
  display: block;
}
.kw-form label span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 7px;
}
.kw-form input,
.kw-form select,
.kw-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bbb;
  background: transparent;
  padding: 10px 2px;
  outline: none;
  color: #111;
  border-radius: 0;
}
.kw-form input:focus,
.kw-form select:focus,
.kw-form textarea:focus {
  border-color: var(--kw-primary);
}
.kw-form-full {
  grid-column: 1/-1;
}
.kw-form-status {
  margin: 20px 0 0;
  font-weight: 700;
}
.kw-form.is-loading {
  opacity: 0.65;
  pointer-events: none;
}
.kw-pagination {
  margin-top: 50px;
}
@keyframes float {
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1024px) {
  :root {
    --container: min(100% - 36px, 900px);
  }
  .kw-nav,
  .kw-header__cta {
    display: none;
  }
  .kw-menu-toggle {
    display: block;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid #ffffff4a;
    border-radius: 50%;
    background: transparent;
    padding: 13px;
  }
  .kw-menu-toggle span:not(.screen-reader-text) {
    height: 1px;
    background: #fff;
    display: block;
    margin: 5px;
  }
  .kw-nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: #101114;
    padding: 120px 30px 40px;
    flex-direction: column;
    z-index: -1;
  }
  .kw-nav.is-open ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .kw-nav.is-open li a {
    font: 600 clamp(2.2rem, 7vw, 4rem)/1.2 var(--display);
  }
  .kw-nav__mobile-cta {
    display: flex;
    margin-top: auto;
    align-items: end;
    justify-content: space-between;
  }
  .kw-nav__mobile-cta img {
    height: 200px;
    width: auto;
  }
  .kw-hero__inner {
    grid-template-columns: 1fr 0.7fr;
  }
  .kw-hero h1 {
    font-size: clamp(3.7rem, 8vw, 6rem);
  }
  .kw-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }
  .kw-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kw-service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .kw-footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
  .kw-footer__mascot {
    display: none;
  }
  .kw-cursor {
    display: none;
  }
}
@media (max-width: 767px) {
  :root {
    --container: calc(100% - 32px);
  }
  body {
    font-size: 15px;
  }
  .kw-section {
    padding: 80px 0;
  }
  .kw-brand img {
    width: 65px;
    height: 55px;
  }
  .kw-header {
    padding: 8px 0;
  }
  .kw-hero {
    padding: 120px 0 50px;
    min-height: auto;
  }
  .kw-hero__inner {
    display: flex;
    flex-direction: column;
  }
  .kw-hero__copy {
    position: relative;
    z-index: 3;
  }
  .kw-hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }
  .kw-hero__visual {
    margin-top: -30px;
    margin-left: auto;
    width: 82%;
  }
  .kw-hero__visual img {
    width: 100%;
  }
  .kw-float--three {
    display: none;
  }
  .kw-scroll {
    display: none;
  }
  .kw-section-head--row,
  .kw-footer__lead {
    display: block;
  }
  .kw-section-head--row .kw-text-link {
    display: inline-block;
    margin-top: 15px;
  }
  .kw-problem-grid,
  .kw-project-grid,
  .kw-split,
  .kw-ecosystem__inner,
  .kw-faq-layout,
  .kw-copy-grid,
  .kw-contact-grid {
    grid-template-columns: 1fr;
  }
  .kw-problem:nth-child(odd) {
    border-right: 0;
  }
  .kw-problem:nth-child(even) {
    padding-left: 0;
  }
  .kw-problem {
    padding: 35px 45px 35px 0;
  }
  .kw-service-row {
    grid-template-columns: 35px 1fr 25px;
  }
  .kw-service-row p {
    display: none;
  }
  .kw-project:nth-child(even) {
    margin-top: 0;
  }
  .kw-project__media {
    height: 105vw;
    max-height: 520px;
  }
  .kw-project-grid {
    gap: 55px;
  }
  .kw-timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid #bbb;
    padding-left: 25px;
  }
  .kw-timeline article {
    padding: 5px 0 30px;
  }
  .kw-timeline article > span {
    top: 8px;
    left: -30px;
  }
  .kw-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kw-stat-grid > div {
    padding: 20px 12px;
  }
  .kw-stat-grid strong {
    font-size: 2.5rem;
  }
  .kw-ecosystem__visual {
    min-height: 420px;
    order: 2;
  }
  .kw-ecosystem__inner {
    gap: 30px;
  }
  .kw-quote > p {
    font-size: 1.85rem;
  }
  .kw-testimonial-stage {
    min-height: 450px;
  }
  .kw-slider-nav {
    position: static;
    margin-top: 30px;
  }
  .kw-post-grid {
    grid-template-columns: 1fr;
  }
  .kw-faq-layout {
    gap: 50px;
  }
  .kw-final-cta br {
    display: none;
  }
  .kw-footer__lead .kw-button {
    margin-top: 30px;
  }
  .kw-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .kw-footer__grid > div:first-child {
    grid-column: 1/-1;
  }
  .kw-footer__bottom {
    display: block;
  }
  .kw-service-cards {
    grid-template-columns: 1fr;
  }
  .kw-service-card {
    min-height: 320px;
  }
  .kw-detail-hero .kw-split {
    display: flex;
    flex-direction: column;
  }
  .kw-detail-visual {
    width: 100%;
    min-height: 360px;
  }
  .kw-feature-grid {
    grid-template-columns: 1fr;
  }
  .kw-case-cover {
    width: calc(100% - 32px);
    height: 100vw;
  }
  .kw-form-grid {
    grid-template-columns: 1fr;
  }
  .kw-form-full {
    grid-column: auto;
  }
  .kw-page-hero,
  .kw-detail-hero,
  .kw-case-hero,
  .kw-article-hero {
    padding: 130px 0 75px;
  }
  .kw-page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
  .kw-breadcrumbs {
    margin-bottom: 35px;
  }
  .kw-contact-grid > div:first-child,
  .kw-contact-grid > aside {
    order: 2;
  }
  .kw-footer {
    padding-top: 75px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .kw-cursor {
    display: none;
  }
}

/* Packages and global cinematic depth */
.kw-package-hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 75% 42%, #5b2108 0, transparent 31%),
    radial-gradient(circle at 20% 0, #35120b 0, transparent 32%), #090a0d;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 150px 0 75px;
  display: flex;
  align-items: center;
}
.kw-package-hero__mesh,
.kw-package-detail-hero__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff09 1px, transparent 1px),
    linear-gradient(90deg, #ffffff09 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 35%, transparent);
}
.kw-package-hero__inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  position: relative;
}
.kw-package-hero h1 {
  font-size: clamp(3.8rem, 7vw, 7.3rem);
  margin-bottom: 28px;
}
.kw-package-hero__inner > div:first-child > p:not(.kw-kicker) {
  color: #b6b8c0;
  max-width: 650px;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.kw-package-hero__art {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.kw-package-hero__art > img {
  width: 125%;
  max-width: none;
  margin-left: -10%;
  filter: drop-shadow(0 35px 60px #0009);
  transform: perspective(1000px) rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transition: transform 0.15s;
}
.kw-depth-orb {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ff4d0033;
  filter: blur(55px);
  right: 8%;
  top: 15%;
}
.kw-depth-chip {
  position: absolute;
  z-index: 3;
  background: #13151ad9;
  border: 1px solid #ffffff2b;
  box-shadow: 0 12px 30px #0007;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}
.kw-depth-chip--a {
  top: 13%;
  left: 12%;
}
.kw-depth-chip--b {
  right: 2%;
  top: 47%;
  animation-delay: -2s;
}
.kw-depth-chip--c {
  bottom: 8%;
  left: 20%;
  animation-delay: -3.5s;
}
.kw-package-nav {
  position: sticky;
  top: 87px;
  background: #f5f2ebef;
  backdrop-filter: blur(16px);
  z-index: 20;
  border-bottom: 1px solid #d8d4cb;
}
.kw-package-nav .kw-container {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-block: 14px;
}
.kw-package-nav button {
  white-space: nowrap;
  background: transparent;
  border: 1px solid #c9c5bc;
  border-radius: 100px;
  padding: 9px 15px;
  font-size: 0.72rem;
  font-weight: 700;
}
.kw-package-nav button.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.kw-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kw-package-card {
  background: #fff;
  border: 1px solid #ddd9d0;
  padding: 32px;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}
.kw-package-card:before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #ff4d000d;
  right: -120px;
  top: -120px;
  transition: 0.5s;
}
.kw-package-card:hover {
  transform: translateY(-10px);
  border-color: var(--kw-primary);
  box-shadow: 0 35px 70px #1d140c16;
}
.kw-package-card:hover:before {
  transform: scale(1.5);
}
.kw-package-card.is-featured {
  background: var(--ink);
  color: #fff;
}
.kw-package-card__top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--kw-primary);
}
.kw-package-card__top i {
  font-style: normal;
  background: var(--kw-primary);
  color: #fff;
  padding: 5px 9px;
  border-radius: 30px;
}
.kw-package-card h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.65rem);
  margin: 44px 0 16px;
}
.kw-package-card > p {
  font-size: 0.86rem;
  color: #6d6f75;
  min-height: 90px;
}
.kw-package-card.is-featured > p {
  color: #aeb0b8;
}
.kw-price {
  border-block: 1px solid #dedbd3;
  padding: 23px 0;
  margin: 10px 0 22px;
}
.kw-price strong {
  font: 700 clamp(2.1rem, 3vw, 3.1rem)/1 var(--display);
  letter-spacing: -0.055em;
}
.kw-price small {
  color: #777;
  display: block;
  margin-top: 7px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.kw-package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.kw-package-card li {
  display: flex;
  gap: 10px;
  font-size: 0.77rem;
  margin: 8px 0;
  color: #585a60;
}
.kw-package-card.is-featured li {
  color: #bbb;
}
.kw-package-card li i {
  font-style: normal;
  color: var(--green);
}
.kw-package-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-weight: 700;
  color: var(--kw-primary);
}
.kw-package-card__link i {
  font-style: normal;
  font-size: 1.4rem;
}
.kw-package-builder {
  background: #0e0f12;
  color: #fff;
  overflow: hidden;
}
.kw-package-builder__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  min-height: 720px;
}
.kw-package-builder h2 {
  margin-bottom: 30px;
}
.kw-package-builder p:not(.kw-kicker) {
  color: #aaa;
  max-width: 590px;
  margin-bottom: 32px;
}
.kw-package-builder img {
  width: 115%;
  max-width: none;
  filter: drop-shadow(0 30px 60px #000);
  will-change: transform;
}
.kw-package-notes {
  background: #ebe7df;
}
.kw-package-notes .kw-feature-grid article {
  background: #ebe7df;
}
.kw-package-detail-hero {
  background:
    radial-gradient(circle at 80% 50%, #522006, transparent 30%), #0b0c0f;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 160px 0 95px;
}
.kw-package-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 8vw;
  align-items: center;
  position: relative;
}
.kw-package-detail-grid h1 {
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  margin-bottom: 24px;
}
.kw-package-intro {
  font-size: 1.12rem;
  color: #b5b7bf;
  max-width: 650px;
}
.kw-package-detail-price {
  display: flex;
  align-items: end;
  gap: 15px;
  margin: 35px 0;
}
.kw-package-detail-price strong {
  font: 700 clamp(3rem, 5vw, 5rem)/0.9 var(--display);
  color: var(--kw-accent);
  letter-spacing: -0.06em;
}
.kw-package-detail-price span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
}
.kw-package-detail-art {
  min-height: 550px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.kw-package-detail-art img {
  position: absolute;
  width: 120%;
  max-width: none;
  filter: drop-shadow(0 25px 60px #000);
  transform: perspective(1000px) rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transition: transform 0.15s;
}
.kw-glass-screen {
  width: 72%;
  aspect-ratio: 1.2;
  border: 1px solid #ffffff31;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff13, #ffffff03);
  backdrop-filter: blur(8px);
  transform: rotate(-8deg);
  display: flex;
  gap: 8px;
  padding: 18px;
  box-shadow: 0 40px 80px #0008;
}
.kw-glass-screen i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--kw-primary);
}
.kw-glass-screen span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font: 700 13rem/1 var(--display);
  color: #ffffff0e;
}
.kw-package-proof {
  background: var(--kw-primary);
  color: #fff;
}
.kw-package-proof .kw-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.kw-package-proof .kw-container > div {
  padding: 35px;
  border-left: 1px solid #ffffff38;
}
.kw-package-proof span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffd5c5;
  margin-bottom: 10px;
}
.kw-package-proof strong {
  font-size: 0.9rem;
  display: block;
}
.kw-package-inclusions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: start;
}
.kw-package-inclusions aside {
  position: sticky;
  top: 150px;
}
.kw-package-inclusions ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ccc;
}
.kw-package-inclusions li {
  display: grid;
  grid-template-columns: 45px 1fr 25px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #ccc;
}
.kw-package-inclusions li span {
  color: var(--kw-primary);
  font-size: 0.68rem;
}
.kw-package-inclusions li strong {
  font: 600 clamp(1.05rem, 1.8vw, 1.45rem)/1.2 var(--display);
}
.kw-package-inclusions li i {
  font-style: normal;
  color: var(--green);
}
.kw-package-journey {
  background: #e9e5dc;
}
.kw-package-journey .kw-timeline {
  grid-template-columns: repeat(5, 1fr);
}
.kw-package-fine {
  background: #fff;
}
.is-scrolling-up .kw-header {
  transform: translateY(0);
}
body:not(.is-scrolling-up) .kw-header.is-scrolled {
  transform: translateY(-105%);
}
.kw-header {
  transition:
    transform 0.35s,
    padding 0.3s,
    background 0.3s;
}
@media (max-width: 1024px) {
  .kw-package-hero__inner,
  .kw-package-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kw-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kw-package-nav {
    top: 70px;
  }
  .kw-package-builder__inner {
    min-height: 590px;
  }
  .kw-package-detail-art {
    min-height: 430px;
  }
}
@media (max-width: 767px) {
  .kw-package-hero {
    padding-top: 125px;
  }
  .kw-package-hero__inner,
  .kw-package-detail-grid,
  .kw-package-builder__inner,
  .kw-package-inclusions {
    grid-template-columns: 1fr;
  }
  .kw-package-hero__art {
    margin-top: 30px;
  }
  .kw-package-hero__art > img {
    width: 120%;
    margin-left: -10%;
  }
  .kw-package-grid {
    grid-template-columns: 1fr;
  }
  .kw-package-card {
    min-height: auto;
  }
  .kw-package-builder__inner {
    padding-top: 80px;
  }
  .kw-package-builder img {
    width: 130%;
    margin-left: -15%;
  }
  .kw-package-detail-art {
    min-height: 390px;
  }
  .kw-package-detail-art img {
    width: 120%;
  }
  .kw-package-proof .kw-container {
    grid-template-columns: 1fr;
  }
  .kw-package-proof .kw-container > div {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid #ffffff38;
  }
  .kw-package-inclusions aside {
    position: static;
  }
  .kw-package-journey .kw-timeline {
    grid-template-columns: 1fr;
  }
  .kw-depth-chip--c {
    display: none;
  }
}

/* Services archive */
.kw-services-hero {
  min-height: 100svh;
  padding: 145px 0 70px;
  background:
    radial-gradient(circle at 78% 44%, #632306 0, transparent 30%),
    radial-gradient(circle at 10% 0, #381007 0, transparent 35%), #0a0b0e;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.kw-services-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: linear-gradient(#000, transparent);
}
.kw-services-hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  position: relative;
}
.kw-services-hero h1 {
  font-size: clamp(3.8rem, 7.2vw, 7.6rem);
  margin-bottom: 28px;
}
.kw-services-hero__inner > div:first-child > p:not(.kw-kicker) {
  color: #b5b7bf;
  max-width: 650px;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.kw-service-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}
.kw-service-signals span {
  border: 1px solid #ffffff27;
  border-radius: 100px;
  padding: 7px 12px;
  color: #aeb0b8;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.kw-services-hero__visual {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.kw-services-hero__visual img {
  position: absolute;
  height: 105%;
  width: auto;
  max-width: none;
  bottom: -10%;
  z-index: 2;
  filter: drop-shadow(0 30px 55px #000);
  transform: perspective(1000px) rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transition: transform 0.15s;
}
.kw-services-orbit {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid #ff6a2338;
  border-radius: 50%;
  box-shadow: inset 0 0 80px #ff4d0010;
}
.kw-services-orbit:before,
.kw-services-orbit:after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid #ffffff12;
  border-radius: 50%;
}
.kw-services-orbit:after {
  inset: 30%;
}
.kw-service-bubble {
  position: absolute;
  z-index: 3;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #131419d9;
  border: 1px solid #ffffff25;
  padding: 9px 13px;
  border-radius: 10px;
  box-shadow: 0 15px 30px #0006;
  animation: float 5s ease-in-out infinite;
}
.kw-service-bubble--one {
  top: 16%;
  left: 5%;
}
.kw-service-bubble--two {
  right: 2%;
  top: 42%;
  animation-delay: -2s;
}
.kw-service-bubble--three {
  bottom: 8%;
  left: 15%;
  animation-delay: -3.5s;
}
.kw-services-intro {
  background: var(--kw-primary);
  color: #fff;
  overflow: hidden;
}
.kw-services-intro .kw-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 18px;
  font: 700 clamp(0.75rem, 1.4vw, 1rem)/1 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.kw-services-intro p {
  margin: 0;
}
.kw-services-intro i {
  color: var(--kw-accent);
}
.kw-service-directory {
  border-top: 1px solid #c9c5bc;
}
.kw-service-panel {
  display: grid;
  grid-template-columns: 60px 1fr 130px;
  gap: 35px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #c9c5bc;
  transition:
    padding 0.35s,
    background 0.35s;
}
.kw-service-panel:hover {
  padding-inline: 22px;
  background: #fff;
}
.kw-service-panel__number {
  font-size: 0.7rem;
  color: var(--kw-primary);
}
.kw-service-panel__body h2 {
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  margin: 0 0 10px;
}
.kw-service-panel__body > p {
  color: #686a70;
  margin: 0 0 14px;
  max-width: 720px;
}
.kw-service-panel__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.kw-service-panel__tags span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  border-radius: 100px;
  border: 1px solid #cbc8c0;
}
.kw-service-panel__icon {
  height: 100px;
  position: relative;
  background: linear-gradient(135deg, var(--kw-primary), var(--kw-secondary));
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.kw-service-panel__icon > span {
  font: 700 4.3rem/1 var(--display);
  color: #ffffff47;
}
.kw-service-panel__icon i {
  position: absolute;
  right: 10px;
  top: 7px;
  font-style: normal;
}
.kw-service-system {
  background: #101115;
  color: #fff;
  padding: clamp(90px, 11vw, 160px) 0;
  overflow: hidden;
}
.kw-service-system__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10vw;
}
.kw-service-system h2 {
  margin-bottom: 28px;
}
.kw-service-system p:not(.kw-kicker) {
  color: #aaa;
  max-width: 590px;
  margin-bottom: 30px;
}
.kw-system-rings {
  min-height: 520px;
  position: relative;
  border: 1px solid #ffffff1c;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.kw-system-rings:before,
.kw-system-rings:after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid #ffffff15;
  border-radius: 50%;
}
.kw-system-rings:after {
  inset: 31%;
}
.kw-system-rings img {
  position: relative;
  z-index: 2;
  max-height: 430px;
  width: auto;
}
.kw-system-rings span {
  position: absolute;
  z-index: 3;
  background: var(--kw-primary);
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 0.62rem;
  text-transform: uppercase;
}
.kw-system-rings span:nth-child(1) {
  top: 4%;
  left: 28%;
}
.kw-system-rings span:nth-child(2) {
  right: 0;
  top: 42%;
}
.kw-system-rings span:nth-child(3) {
  bottom: 7%;
  left: 28%;
}
.kw-system-rings span:nth-child(4) {
  left: -2%;
  top: 48%;
}
.kw-service-process {
  background: #e9e5dc;
}
.kw-service-process .kw-timeline {
  grid-template-columns: repeat(5, 1fr);
}
.kw-package-hero__art--cutout > img {
  width: 88%;
  margin: 0 auto;
  max-height: 720px;
  object-fit: contain;
}
.kw-package-hero__art--cutout {
  display: grid;
  place-items: center;
  min-height: 690px;
}
@media (max-width: 1024px) {
  .kw-services-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
  .kw-services-hero__visual {
    min-height: 540px;
  }
  .kw-service-panel {
    grid-template-columns: 45px 1fr 100px;
  }
  .kw-service-system__grid {
    gap: 5vw;
  }
}
@media (max-width: 767px) {
  .kw-services-hero {
    min-height: auto;
    padding-top: 125px;
  }
  .kw-services-hero__inner,
  .kw-service-system__grid {
    grid-template-columns: 1fr;
  }
  .kw-services-hero__visual {
    min-height: 480px;
    margin-top: 20px;
  }
  .kw-services-hero__visual img {
    height: 100%;
    bottom: -8%;
  }
  .kw-service-signals {
    margin-top: 25px;
  }
  .kw-services-intro .kw-container {
    gap: 16px;
    overflow: auto;
    justify-content: flex-start;
  }
  .kw-service-panel {
    grid-template-columns: 35px 1fr;
    padding: 25px 0;
  }
  .kw-service-panel__icon {
    display: none;
  }
  .kw-service-panel:hover {
    padding-inline: 10px;
  }
  .kw-service-panel__body h2 {
    font-size: 1.75rem;
  }
  .kw-system-rings {
    min-height: 380px;
    margin-top: 50px;
  }
  .kw-service-process .kw-timeline {
    grid-template-columns: 1fr;
  }
  .kw-package-hero__art--cutout {
    min-height: 500px;
  }
}
.kw-package-card__visual {
  height: 235px;
  margin: 22px 0 4px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  background: linear-gradient(145deg, #f6f1e8, #fff);
}
.kw-package-card__visual:before {
  content: "";
  position: absolute;
  width: 72%;
  height: 60%;
  background: radial-gradient(circle, var(--kw-primary), transparent 68%);
  opacity: 0.13;
  filter: blur(18px);
}
.kw-package-card__visual img {
  display: block;
  width: 88%;
  height: 88%;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 16px #20140c24);
  transition: transform 0.45s;
}
.kw-package-card:hover .kw-package-card__visual img {
  transform: translateY(-5px) scale(1.02);
}
.kw-package-card h2,
.kw-package-card > p,
.kw-package-card .kw-price,
.kw-package-card ul,
.kw-package-card__link {
  position: relative;
  z-index: 2;
}
.kw-package-card h2 {
  margin-top: 22px;
}
.kw-package-card {
  min-height: 820px;
  contain: layout paint;
}
.kw-package-detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}
.kw-package-detail-grid > div {
  min-width: 0;
}
.kw-package-detail-art {
  overflow: hidden;
  isolation: isolate;
}
.kw-package-detail-art img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.kw-package-hero__art--cutout {
  overflow: hidden;
  isolation: isolate;
}
.kw-package-hero__art--cutout > img {
  max-width: 88%;
}
@media (max-width: 767px) {
  .kw-package-card {
    min-height: auto;
  }
  .kw-package-card__visual {
    height: 230px;
  }
  .kw-package-card__visual img {
    width: 84%;
    height: 84%;
  }
  .kw-package-detail-grid {
    grid-template-columns: 1fr;
  }
  .kw-package-detail-art img {
    width: 100%;
    max-width: 100%;
  }
}

/* Site-wide motion system */
.kw-scroll-progress {
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--kw-page-progress, 0));
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    var(--kw-secondary),
    var(--kw-primary),
    var(--kw-accent)
  );
  box-shadow: 0 0 18px #ff4d0080;
}
.kw-motion-ready .kw-auto-motion,
.kw-motion-ready .kw-image-motion {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
}
.kw-motion-ready .kw-auto-motion.kw-motion-from-bottom {
  transform: translate3d(0, 52px, 0) scale(0.985);
}
.kw-motion-ready .kw-auto-motion.kw-motion-from-top {
  transform: translate3d(0, -42px, 0) scale(0.985);
}
.kw-motion-ready .kw-auto-motion.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.kw-motion-ready .kw-image-motion {
  transform: translate3d(0, 35px, 0) scale(0.96);
  clip-path: inset(8% 0 8% 0 round 20px);
}
.kw-motion-ready .kw-image-motion.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0 round 0);
}
.kw-image-motion img {
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}
.kw-image-motion:hover img {
  transform: scale(1.035);
}
[data-parallax] {
  translate: 0 var(--kw-parallax-y, 0);
  transition: translate 0.12s linear;
}
.kw-section-active::after {
  opacity: 1;
}
.kw-magnetic {
  translate: var(--magnetic-x, 0) var(--magnetic-y, 0);
  transition:
    translate 0.18s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.kw-value-card,
.kw-service-card,
.kw-package-card,
.kw-post-card,
.kw-project {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.kw-value-card:hover,
.kw-service-card:hover,
.kw-package-card:hover,
.kw-post-card:hover {
  box-shadow: 0 28px 60px #1011141c;
}
.kw-kicker {
  background-image: linear-gradient(90deg, currentColor 0 50%, transparent 50%);
  background-position: 100% 100%;
  background-size: 200% 1px;
  background-repeat: no-repeat;
  transition: background-position 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.kw-section-active .kw-kicker {
  background-position: 0 100%;
}
@media (max-width: 767px) {
  .kw-motion-ready .kw-auto-motion.kw-motion-from-bottom {
    transform: translate3d(0, 30px, 0);
  }
  .kw-motion-ready .kw-auto-motion.kw-motion-from-top {
    transform: translate3d(0, -24px, 0);
  }
  .kw-scroll-progress {
    height: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .kw-scroll-progress {
    display: none;
  }
  .kw-auto-motion,
  .kw-image-motion,
  .kw-image-motion img,
  .kw-magnetic,
  [data-parallax] {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}
