.carousel {
  width: 100%;
  margin-top: 24px;
}
.carousel img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.viewport {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(23, 22, 26, 0.12);
  touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.track {
  display: flex;
  transition: transform 0.35s ease;
}

.slide {
  flex: 0 0 100%;
  text-align: center;
}
.slide img {
  display: inline-block;
  width: 100%;
  border-radius: 12px;
}
.slide p {
  margin-top: 28px;
  font-size: 28px;
  color: #56535E;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
}

.prev, .next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(23, 22, 26, 0.12);
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.prev:hover, .next:hover {
  transform: translateY(-2px);
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: rgba(86, 83, 94, 0.2);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  width: 20px;
  background: #56535E;
}

.carousel.cursor-left {
  cursor: url("../assets/cursor-left.svg") 16 16, w-resize;
}

.carousel.cursor-right {
  cursor: url("../assets/cursor-right.svg") 16 16, e-resize;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  --accent: transparent;
  margin: 0;
  background: #fbf7f1;
  color: #17161a;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 600px;
  z-index: -1;
  opacity: 0.3;
  background: linear-gradient(180deg, transparent 0%, transparent 100%), radial-gradient(70% 120% at 12% -10%, var(--accent), transparent 62%);
}
body.webfaction {
  --accent: #3a7aef;
}
body.meaningful-planet {
  --accent: #2d6b3c;
}
body.winston {
  --accent: #80501a;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 96;
}

h3, h4 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
  font-size: 54px;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  margin: 0 0 16px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
}

.red {
  font-weight: 600;
  color: #d52f45;
}

iframe {
  border-radius: 16px;
  border: 1px solid rgba(23, 22, 26, 0.12);
  width: 100%;
  height: 500px;
}

.ticks {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ticks li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 6px;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background-size: contain;
}
.ticks.webfaction li::before {
  background: url("../assets/check-blue.svg") no-repeat center;
}
.ticks.meaningful-planet li::before {
  background: url("../assets/check-green.svg") no-repeat center;
}
.ticks.winston li::before {
  background: url("../assets/check-brown.svg") no-repeat center;
}

ul {
  margin: 0;
  padding-left: 18px;
}

strong {
  font-weight: 600;
}

.container {
  max-width: 800px;
}
@media (min-width: 1000px) {
  .container {
    margin: 40px auto 80px auto;
  }
}

.separator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(86, 83, 94, 0.16);
  margin: 64px 0;
}

.split {
  display: flex;
  gap: 60px;
}

.main-image {
  width: 100%;
  border-radius: 16px;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(23, 22, 26, 0.12);
  border-radius: 24px;
  overflow: hidden;
  background-clip: padding-box;
}
.case-meta div {
  padding: 22px 24px;
  background: white;
}
.case-meta div:not(:last-child) {
  border-right: 1px solid rgba(23, 22, 26, 0.12);
}
.case-meta h6 {
  font-size: 16px;
  margin: 0;
}
.case-meta p {
  font-size: 15px;
}

.findings {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.findings .finding-box {
  background-color: white;
  padding: 36px;
  border: 1px solid rgba(23, 22, 26, 0.12);
  border-radius: 24px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.findings .finding-box div {
  flex: 1;
}
.findings .finding-box h2 {
  font-size: 30px;
}
.findings .finding-box h6 {
  color: #3a7aef;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 4px 0;
}
.findings .finding-box p {
  font-size: 16px;
}
.findings .finding-box .quotes {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  flex-direction: column;
}
.findings .finding-box .quotes .quote {
  flex-direction: column;
  display: flex;
  gap: 16px;
  border-radius: 16px;
  background-color: rgba(58, 122, 239, 0.08);
  padding: 20px;
}
.findings .finding-box .quotes img {
  opacity: 0.3;
  width: 24px;
}
.findings .finding-box .quotes p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  font-weight: 400;
  color: #3a7aef;
}

.table-wrap {
  background-color: white;
  border: 1px solid rgba(23, 22, 26, 0.12);
  border-radius: 16px;
  margin-top: 24px;
}
.table-wrap table {
  width: 100%;
}
.table-wrap td, .table-wrap th {
  padding: 16px;
  text-align: left;
}
.table-wrap th {
  border-bottom: 1px solid rgba(23, 22, 26, 0.12);
}
.table-wrap .level {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.table-wrap .level.green {
  color: #00796b;
  background: #e8f8f6;
}
.table-wrap .level.orange {
  color: #8b5600;
  background: #fff6e5;
}
.table-wrap .level.red {
  color: #c02f45;
  background: #fef0f3;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container.collapsed {
  max-height: 700px;
  border-radius: 16px;
}

.image-container:not(.collapsed) {
  max-height: 20000px;
}

.main-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.image-container.collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fbf7f1);
  border-radius: 16px;
}

.toggle-image {
  all: unset;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  font-size: 16px;
  color: #17161a;
  opacity: 0.6;
}
.toggle-image:hover {
  opacity: 1;
  cursor: pointer;
}

.big-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(23, 22, 26, 0.2);
  background: white;
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.big-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(23, 22, 26, 0.05), 0 12px 28px rgba(23, 22, 26, 0.08);
}
.big-button:hover .next-project__arrow {
  transform: translateX(6px);
}
.big-button p {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #17161a;
  margin-bottom: 4px;
  opacity: 0.6;
}
.big-button h3 {
  margin: 0;
}
.big-button img {
  width: 32px;
  opacity: 0.6;
}

.hero {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 56px 0 56px 44px;
  border-radius: 24px;
  box-shadow: 0 4px 8px rgba(23, 22, 26, 0.05), 0 24px 56px rgba(23, 22, 26, 0.12);
  max-width: 960px;
  margin: 40px auto 56px auto;
}
@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
    padding: 28px 0 28px 28px !important;
    margin: 80px 12px 32px 12px;
  }
  .hero h1 {
    font-size: 36px !important;
  }
  .hero div {
    width: 100%;
    padding-right: 28px;
  }
  .hero .hero-image {
    width: 100% !important;
  }
}
.hero h1 {
  font-size: 44px;
  margin-top: 16px;
}
.hero .tags {
  display: flex;
  gap: 8px;
}
.hero .tags p {
  border-radius: 999px;
  background-color: white;
  padding: 4px 12px;
  margin: 0;
  font-size: 15px;
  box-shadow: 0 1px 2px rgba(23, 22, 26, 0.06), 0 2px 8px rgba(23, 22, 26, 0.04);
}
.hero .case-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero .case-logo p {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .hero .case-logo p {
    font-size: 14px;
  }
}
.hero .case-logo img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}
.hero .case-logo .webfaction {
  color: #3a7aef;
}
.hero .case-logo .winston {
  color: #80501a;
}
.hero .case-logo .meaningful-planet {
  color: #2d6b3c;
}
.hero.webfaction {
  background: linear-gradient(to bottom right, rgba(58, 122, 239, 0.3) 0%, rgba(60, 114, 217, 0) 60%), white;
}
.hero.webfaction .hero-image {
  width: 500px;
}
.hero.winston {
  padding: 56px 40px 0 44px;
  background: linear-gradient(to bottom right, rgba(242, 174, 61, 0.3) 0%, rgba(242, 174, 61, 0) 60%), white;
}
.hero.winston .hero-image {
  width: 400px;
}
.hero.meaningful-planet {
  background: linear-gradient(to bottom right, rgba(112, 179, 129, 0.3) 0%, rgba(112, 179, 129, 0) 60%), white;
}
.hero.meaningful-planet .hero-image {
  width: 500px;
}

.back-button {
  position: sticky;
  top: 0px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: -68px;
  transform: translateY(44px);
  opacity: 0.4;
  z-index: 200;
}
@media (min-width: 1000px) {
  .back-button:hover {
    opacity: 0.2;
  }
}
@media (max-width: 1000px) {
  .back-button img {
    height: 24px;
    width: 24px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .back-button {
    margin: 0;
    position: fixed;
    background-color: white;
    opacity: 1;
    border-radius: 200px;
    padding: 12px 12px;
    top: 16px !important;
    left: 16px !important;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
    transform: none;
  }
}

.personas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 1000px) {
  .personas {
    grid-template-columns: 1fr;
  }
}

.persona {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: white;
  border: 1px solid rgba(23, 22, 26, 0.12);
  border-radius: 24px;
}
@media (min-width: 1000px) {
  .persona {
    height: 340px;
    justify-content: space-between;
  }
}
.persona h3 {
  line-height: 1.36;
}
@media (max-width: 1000px) {
  .persona h3 {
    margin-bottom: 0;
  }
}
.persona p {
  font-size: 16px;
  color: rgba(23, 22, 26, 0.75);
  flex: 1;
}
.persona img {
  width: 40px;
}
@media (max-width: 1000px) {
  .persona img {
    margin-bottom: 24px;
  }
}

@media (max-width: 1000px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  .container {
    padding: 0 16px 48px;
  }
  .separator {
    margin: 44px 0;
  }
  iframe {
    height: 320px;
  }
  .tags {
    flex-wrap: wrap;
  }
  .split {
    flex-direction: column;
    gap: 28px;
  }
  .case-meta {
    grid-template-columns: 1fr;
  }
  .case-meta div {
    padding: 16px 18px;
  }
  .case-meta div:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(23, 22, 26, 0.12);
  }
  .findings .finding-box {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .findings .finding-box h2 {
    font-size: 24px;
  }
  .table-wrap {
    overflow-x: auto;
  }
  .table-wrap table {
    min-width: 520px;
  }
  .table-wrap td, .table-wrap th {
    padding: 12px;
  }
  .container > .main-image, .image-container, .carousel {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .main-image, .viewport, .slide img, .image-container.collapsed, .image-container.collapsed::after {
    border-radius: 0;
  }
  .viewport {
    border: none;
  }
  .image-container.collapsed {
    max-height: 420px;
  }
}
.home a, .home p, .home h1, .home h2, .home h3 {
  text-decoration: none !important;
}
.home .hero {
  margin: 32px auto;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
  will-change: transform, box-shadow;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}
.home .hero:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.home .hero:active {
  transform: translateY(-1px) scale(1.005);
  transition-duration: 120ms;
}
@media (hover: none) {
  .home .hero:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  }
}
@media (max-width: 1000px) {
  .home .hero {
    margin: 24px 12px;
  }
}/*# sourceMappingURL=main.css.map */